$(document).ready(function() {
	$(this).find(".hover")
	.css("position", "relative");
	
	$(this).find(".hover").find(".normalImg")
	.css("position", "absolute")
	.css("z-index", "10")
	.css("top", "0")
	.css("left", "0");
	
	$(this).find(".hover").find(".overImg")
	.css("position", "absolute")
	.css("z-index", "0")
	.css("top", "0")
	.css("left", "0");
		
	$(".hover").mouseenter(function() {
		$(this).find(".normalImg").stop().animate({"opacity": "0"}, "slow");
	}).mouseleave(function(){
		$(this).find(".normalImg").stop().animate({"opacity": "1"}, "slow");
	});
});


