jQuery(function($) {				
	$('img.nav1').hover(function() {
		$(this).attr("src", $(this).attr("src").replace(/.png/, "_hover.png"));
	}, function() {
		$(this).attr("src", $(this).attr("src").replace(/_hover.png/, ".png"));
	});	
});
