function menu_images(dir){	$("#navigation > ul").children().each(function(){		var header_id = $(this).attr("id");		var alt = $("a", this).html();		$("a", this).html("<img src=\""+dir+header_id+".png\" alt=\""+alt+"\" />")		.hover(			function(){ $("img", this).attr("src", dir+header_id+"_over.png"); },			function(){ $("img", this).attr("src", dir+header_id+".png"); }				)	});}function menu_img_bottom(){	}