$(document).ready(function(){
	$.localScroll({ speed:500,});
	$('div.workgalleryitem').each(function(i){$(this).find("a").append("<div id='imgoverlay'></div>");});
	$('div.workgalleryitem').hover(function () {
		$(this).find("#imgoverlay").hide().append("<img src='img/overlay.png'>").fadeIn(200);
		},	
	function () {
		$(this).find("#imgoverlay").fadeOut(200, function() {
		    $(this).children().remove();
		  });
		//$(this).find("#imgoverlay").fadeOut(200);
		//$(this).find("#imgoverlay").remove();
	});
});