$(document).ready(function() {
	// find the div.fade elements and hook the hover event
	$('.workthumb').hover(function() {
		$(this).find(".overlay").animate({"opacity": "1"});
		
	}, function() {
		$(this).find(".overlay").animate({"opacity": "0"});
		
	});
	

 
})
