function onover(item, id){
	item.style.backgroundColor = 'CBE0FF';
	document.getElementById("menuitem"+ id).style.color = 'white';
}
function onout(item, id){
	item.style.backgroundColor = 'CBE0FF';
	document.getElementById("menuitem"+ id).style.color = 'blue';
}