$(document).ready(
	function() {
		$("a").removeClass("hover");
		$("a").hover(
			function() {
				$(this).find("img").fadeIn(200);
			},
			function() {
				$(this).find("img").fadeOut(200);
			}
		);
	}
);
