/* gallery-menu */
$(document).ready(
	function()
	{
		$(".active_button").click(function(){
			var page = $(this).attr("href");
			$(this).parent().parent().animate({ opacity: "hide" }, "slow" ,
				function() {
						$(page).animate({ opacity: "show" }, "fast");
					});
			$(this).parent().parent().removeClass("active");
			return false;
			$(page).addClass("active");
		   });
	});
/* light Box */
$(document).ready(
	function()
	{
		$(function() {
			$('.gallery div > a').lightBox();
			});

	});
