//PRELOAD OVER MENU

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