$(document).ready(function(){
	$(".imageOverlay").css({ opacity: 0 });
	$(".imageOverlay").hover(
		function() {
			$(this).stop().animate({"opacity": "0.4"}, 300);
		},
		function() {
			$(this).stop().animate({"opacity": "0"}, 300);
		}
	);
});
