jQuery(document).ready(function() {
$("img.rollover").mouseover(
function()
{
this.src = this.src.replace("_off","_on");
});
$("img.rollover").mouseout(
function()
{
this.src = this.src.replace("_on","_off");
});
});

