jQuery(function( $ ){			
	$.preload( '#rollover-images img', {
	    find:'.jpg',
	    replace:'_over.jpg'
	});
	$('#rollover-images img').hover(function(){
		this.src = this.src.replace('.jpg','_over.jpg');	
	},function(){
		this.src = this.src.replace('_over','');
	});
});

