$(document).ready(function(){
	$("div#home img").hover(function(){
		$(this).attr({"old_src":$(this).attr("src"),"src":$(this).attr("src").split(".")[0].replace('nrm',"")+"hvr.gif"}).css({'cursor':'pointer'})
	},function(){
		$(this).attr("src",$(this).attr("old_src")).removeAttr("old_attr");
	})
})
