$(function(){ 
	$('img.rollover').hover (
	 function() {
	  this.src = this.src.replace(".jpg","2.jpg");
	  this.src = this.src.replace(".gif","2.gif");
	 },
	 function() {
	  this.src = this.src.replace("2.jpg",".jpg");
	  this.src = this.src.replace("2.gif",".gif");
	 }
	);
});
