

/*    gallery1    */
$(document).ready(function(){
						   
	$('.gallery1 li').mouseenter(function(){
		box1=$(this).find('.box1');
		box1.stop().animate({'top':'204'},400);
	}).mouseleave(function(){
		box1.stop().animate({'top':'305'},400);
	});
});

/*    gallery2    */
$(document).ready(function(){
						   
	$('.gallery2 li').mouseenter(function(){
		box1=$(this).find('.box1');
		box1.stop().animate({'top':'0'},400);
	}).mouseleave(function(){
		box1.stop().animate({'top':'164'},400);
	});
});

/*    video    */
$(document).ready(function(){
		$(".video a[rel^='prettyPhoto']").prettyPhoto({theme:'dark_rounded'});
		$('.video a span').stop().animate({ opacity: "0" }, 0);
		$('.video a').mouseenter(function(){
			$(this).find('span').stop().animate({ opacity: "1" }, 500);
		}).mouseleave(function(){
			$(this).find('span').stop().animate({ opacity: "0" }, 500);
		});
	});

/*    gallery3    */
$(document).ready(function(){

   $(".folio a").click(function(){

      var largePath = $(this).attr("href");

      $("#largeImg").animate({ opacity: "0" }, 400,function(){
   		 $("#largeImg").attr({ src: largePath})
		 })
	  $("#largeImg").animate({ opacity: "1" }, 400)
      return false;
   });
});


