// JavaScript Document
function menuOver(id) {
		document.getElementById(id).style.backgroundColor="#000000";
	}
	function menuOut(id) {
		document.getElementById(id).style.backgroundColor="";
	}
