
function colorGrey(id){
	document.getElementById(id).style.borderColor = "#0066CC";
	document.getElementById(id).style.backgroundColor = "#C0C0C0";
}

function resetMnuItem(id){
	document.getElementById(id).style.borderColor = "#C0C0C0";
	document.getElementById(id).style.backgroundColor = "#ffffff";
}

