$(document).ready(function() { 
		$(".menu li:last").addClass("li-last");
                $(".menu ul li:eq(0),.menu ul li:eq(3)").css('width','145px');
		$(".bottom div.l").hover(function(){
	        $(this).parent().find("div.panorama-pic").animate({"left": "206px"}, "slow");	        
	    },function(){
	        $(this).parent().find("div.panorama-pic").animate({"left": "0px"}, "slow");
   		 });		 
		 $(".bottom div.r").hover(function(){	       
	        $(this).parent().find("div.panorama-pic").animate({"left": "-206px"}, "slow");
	    },function(){	        
	        $(this).parent().find("div.panorama-pic").animate({"left": "0px"}, "slow");
   		 });
		 $("#thumbnail li a").click(function(){
		    $(this).parent().parent().find('a').removeClass("active-pic");
		    $(this).addClass("active-pic");
		    $("#large img").hide().attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});			
		    $("#large h2").html($("> img", this).attr("title"));
            $('div.photos p').html($(this).attr('title'));
		    return false;			
		});			
		$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")});
});	

