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

});
