$(document).ready(function(){
						   
	/*works thumbnail*/
	$('.work-image').hover(function() {
	  $(this).find('.detailed').stop().fadeTo("slow",1.0);
	}, function() {
	  $(this).find('.detailed').stop().fadeTo("slow",0.0);
	});	
	
	
	//$('.blogposts').masonry({ 
	//		
	//		animate: true,
	//		itemSelector: '.post-block'
	//		//easing: 'linear'
	//	}, 
	//	function() { $(this).css({
	//		
	//		});
	//	});
	
	
});	  
