$(document).ready(function() {
	$("#Navigation li a img").each(function(){
		// dont swap image for current page link
		if ($(this).closest('li.current_page_item').length == 0){
		
			var hoverSrc = $(this).attr("src").replace(".png","-hover.png");
			jQuery("<img>").attr("src", hoverSrc); // preload hover image
	
			$(this).hover(
				function(){
						$(this).attr("src", hoverSrc);
				},
				function(){
					$(this).attr("src", $(this).attr("src").replace("-hover.png",".png"));
				}
			);
		}
	});
});
