$(function(){
	//Menu
	$("#top li img").each(function(){
		var _loader = new Image();
		$(_loader).attr("src", $(this).attr("src").replace(".png", "_on.png"));
	});
	$("#top li").not(".selected").find("img").hover(
		function(){$(this).attr("src", $(this).attr("src").replace(".png", "_on.png"));},
		function(){$(this).attr("src", $(this).attr("src").replace("_on", ""));}
	);

	//Selected
	$("#top li.selected").find("img").attr("src", $("#top li.selected").find("img").attr("src").replace(".png", "_on.png"));
	
	//Footer
	$("#footer ul").find("li:last").css("background", "none");
});