jQuery(function($){
	$('img.roll')
		.mouseover(function(){
		    var onSrc = $(this).attr('src').replace('.gif', '_o.gif');
		    $(this).attr('src', onSrc);
		  })
		  .mouseout(function(){
		    var offSrc = $(this).attr('src').replace('_o.gif', '.gif');
		    $(this).attr('src', offSrc);
		  });
});
