// JavaScript Document
jQuery(function( $ ){			

	$('img.rollover').preload({
		find:'.jpg',
	    replace:'_over.jpg'
	});
	
	//add animation
	$('img.rollover').hover(function(){
		this.src = this.src.replace('.jpg','_over.jpg');	
	},function(){
		this.src = this.src.replace('_over','');
	});

});