/**
 * @author jerome
 */

jQuery(function( $ ){			
	$.preload( '.menu_item img', {
	    find:'.png',
	    replace:'_on.png'
	});

	//add animation
	$('.menu_item img').hover(function(){
		this.src = this.src.replace('.png','_on.png');	
	},function(){
		this.src = this.src.replace('_on','');
	});
	
	
});
