var numberOfCells=6;

function overObj(objOver) {
	for(i=1; i<numberOfCells;i++) {
		//document.getElementById("cell" +i).style.backgroundColor="616B48";
		document.getElementById("cell" +i).className="toolbarCell";
	}
	
	//document.getElementById(objOver).style.backgroundColor="A8B095";
	document.getElementById(objOver).className="toolbarCellHover";
}

function outObj() {
	for(i=1; i<numberOfCells;i++) {
		//document.getElementById("cell" +i).style.backgroundColor="616B48";
		document.getElementById("cell" +i).className="toolbarCell";
	}
}

function gotoURL(URL)
{
  document.location.href=URL;
}