function cellMouseOver(cell) {	
	cell.style.cursor = 'hand';
	cell.style.background='#FFFFC0';
}

function cellMouseOut(cell){
	//cell.style.cursor = 'pointer';
	if(!(cell.Clicked)) cell.style.background='#FFFFFF'; 
}

function cellMouseClick(cell){
	cell.style.cursor = 'hand';		
	cell.style.background='#FFFFC0';
	cell.Clicked = true;
	for ( i = 1; i <= 10; i++ ) {
		if (cell.id != "menucell" + i) {			
			otherCell = eval('document.all.menucell' + i);			
			if (otherCell) {
				otherCell.Clicked = false;
				otherCell.style.background='#FFFFFF'; 
			}
		}
	}
}


