// JavaScript Document

   $(document).ready(function() {
	  
	  	pagina="";
	  
        $('.slide').click(function() {
		
			
			//alert ("a");
			
			pagina=$(this).attr("id");
			
		//alert ("b");
			
			$(".box").each(function () {
									   
			
				
				if ($(this).attr("id")!=pagina)
				{
				
					$("#"+$(this).attr("id")).animate({top:"-550px"});
				}
			})
			
		//	alert ("c");
		
			$("#"+pagina+"page").animate({top:"0px"});
			
			//alert ("d");
			
			
			return false;
		
        });
		
		$('.galleria a').lightBox({fixedNavigation:true});

		
		
		
      });