$(document).ready(function() {
	
	var strImage = "";
	
	$(".linkImage").hover(function(event) {
		strImage = '#img'+this.id;
		$(strImage).fadeOut();
	}, function(){			
		strImage = '#img'+this.id;
		$(strImage).fadeIn("slow");
	});	

});