jQuery(function() {
	/*jQuery("#menu a").find("img:first").each(function(){
		var _loader = new Image();
		jQuery(_loader).attr("src", jQuery(this).attr("src").replace(".jpg", "_on.jpg"));
	});
	
	jQuery("#menu a").hover(
		function(){
			jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace(".jpg", "_on.jpg"));
		},function(){
			jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace("_on", ""));
		}
	);*/

});

