//PRELOAD OVER MENU

jQuery.noConflict();

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

