function MenuSel(id){

	document.getElementById(id).style.display='block';
	document.getElementById(id).style.cursor='pointer';
}
function MenuDeSel(id){
	document.getElementById(id).style.display='none';
	document.getElementById(id).style.cursor='auto';
}
function MenuSelZn(div){
	div.style.backgroundColor='white';
	div.style.cursor='pointer';
}
function MenuDeSelZn(div){
	div.style.backgroundColor='0f0f0f';
	div.style.cursor='auto';
}