$(function(){
	$(".post").hover(function(){
							  $(this).find(".first_pic").animate({left: -300},300);					  
							  },
							  function(){
							  $(this).find(".first_pic").animate({left: 0},300);
							  }
							  )
			//spectrum();
			function spectrum(){
				var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
				$('.post').animate( { backgroundColor: hue }, 3000);
				spectrum(); 
		   	}
			
			
			$(".works").toggle(function(){
									   $(".works_cont").slideDown();	
									   $(".works_cont").masonry();
									   },function(){
										 $(".works_cont").slideUp()  
										   })

})