$(document).ready(function(){
	$('#menu a img').hover(function(){
		var src = $(this).attr('src').replace(".png", "-hover.png");
	    $(this).attr('src', src);
	},
	function(){
		var src = $(this).attr('src').replace("-hover.png", ".png");
	    $(this).attr('src', src);
	}
);

setTimeout(function() {$("#idontcare").show('slow');}, 2000);

$("#idontcare img").click(function(){$("#idontcare").hide('slow');});

});

