
jQuery(document).ready(function() {
						   
	jQuery(".rollOverImage").hover(
	 function()
	 {
	  this.src = this.src.replace(".jpg","_over.jpg");
	 },
	 function()
	 {
	  this.src = this.src.replace("_over.jpg",".jpg");
	 }
	);

});