    $(document).ready(function(){
			$("div.block-left").delay(300).animate({
			marginLeft: "0px"
			
		},500);
		$("div.block-right").delay(300).animate({
			marginRight: "0px"
			
		},500);
		$("div.block-left-mothership").delay(300).animate({
			marginLeft: "0px"
			
		},500);					
       	$("div:hidden:first").fadeIn(2000);
	  $(".buttons").fadeIn(0);
	  
	  
	$(".thumbMask").css({
		marginTop:"-120px",
		height:"0px"
	});
	$(".thumbMask").animate({
		opacity:0.8
	},0);
	
	$(".thumbMask").mouseenter(function(){
		$(this).stop().animate({
			marginTop:"-160px",
			height: "40px"
			
		},{duration:250})
	});
	$(".thumbMask").mouseleave(function(){
		$(this).stop().animate({
			marginTop:"-120px",
			height: "0px"
			
		},{duration:250, easing:"swing"})
	});
     });
	
    