jQuery(function( $ ){			
	$.preload( '#menu img', {
	    find:'.jpg',
	    replace:'-selected.jpg'
	});

	//add animation
	$('#menu img').hover(function(){
		this.src = this.src.replace('.jpg','-selected.jpg');	
	},function(){
		this.src = this.src.replace('-selected','');
	});
});