$(document).ready(function() {

	$("h1").empty();

	$('.nav_img').preload({
		find: 'off',
		replace: 'hover'
	});

	$(".nav_img").hover(
		function() { $(this).attr("src", $(this).attr("src").replace('off','hover')); },
		function() { $(this).attr("src", $(this).attr("src").replace('hover','off')); }
	);
});
