$(document).ready(function(){
    $(".rollover")
	.mouseover(function(){
	    var imgNew = this.src.replace(/\.jpg/, '_o.jpg');
	    // alert(imgNew);
	    this.src = imgNew;
	})
	.mouseout(function(){
	    var imgNew = this.src.replace(/_o\.jpg/, '.jpg');
	    // alert(imgNew);
	    this.src = imgNew;
	})
    });
