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

