jQuery(document).ready(function() {
 
$("img.rollover").hover(
function()
{
this.src = this.src.replace(".nv",".v");
},
function()
{
this.src = this.src.replace(".v",".nv");
}
);
});
