$(function(){
	preload = function(img) {
		$('<img/>')[0].src = img;
	}

	$("#menu-nav img").each(function(){
		var src = $(this).attr("src");
		preload(src.replace(/\.jpg$/, "2.jpg"));
		
		$(this).hover(function(){
			$(this).attr("src", src.replace(/\.jpg$/, "2.jpg"));
		}, function(){
			$(this).attr("src", src);
		});
	});
});
