/**
 * This plugin can be used in 4 ways, this is only 1. Make sure to check
 * the other 3 links as well to see all the Modes.
 */
jQuery(function( $ ){			
	$.preload( '#rollover-images img', {
	    find:'.gif',
	    replace:'_over.gif'
	});
	/*		or
	$('#rollover-images img').preload({
		find:'.gif',
	    replace:'_over.gif'
	});
	*/
	//add animation
	$('#rollover-images img').hover(function(){
		this.src = this.src.replace('.gif','_over.gif');	
	},function(){
		this.src = this.src.replace('_over','');
	});
});
