$(document).ready(function(){	
	$("#nav li img").each(function(){$('#preload').prepend('<img src="'+ $(this).attr('src').replace('.gif', '-hover.gif') +'" />');});
	$('#nav li img').mouseenter(function(){$(this).attr('src', $(this).attr('src').replace('.gif', '-hover.gif'));});
	$('#nav li img').mouseleave(function(){$(this).attr('src', $(this).attr('src').replace('-hover.gif', '.gif'));});
});