$(document).ready(function(){

$("img.rollOver").hover(function(){

this.src = this.src.replace("_up","_over");

},
function(){

this.src = this.src.replace("_over","_up");

}
);


});