$(function(){	$("img.menuov").hover(function(){		$(this).stop(true , true).animate({opacity:'0.4'}, 500 );		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_ov$2"));		$(this).stop(true , true).animate({opacity:'1'}, 400 );	},function(){		$(this).stop(true , true).animate({opacity:'0.4'}, 500 );		$(this).attr("src",$(this).attr("src").replace(/^(.+)_ov(\.[a-z]+)$/, "$1$2"));		$(this).stop(true , true).animate({opacity:'1'}, 400 );	});});
