<!--
function hiLiteCell(menu,switcher) { 
	
	var fontClr = new Array();
	var cellClr = new Array();
	
	for (i=0;i<=4;i++) {
		fontClr[i] = new Object();
		cellClr[i] = new Object();
	}
	
	fontClr[0].on  = '#cc6600';		// home, cal
	fontClr[0].off = '#333333';
	fontClr[1].on  = '#ffffff';		// bio
	fontClr[1].off = '#cccccc';
	fontClr[2].on  = '#ffffff';		// disco
	fontClr[2].off = '#cccccc';
	fontClr[3].on  = '#ffffff';		// reviews
	fontClr[3].off = '#cccccc';
	fontClr[4].on  = '#ffffff';		// contact
	fontClr[4].off = '#666666';
	
	cellClr[0].on  = '#cccccc';		// home, cal
	cellClr[0].off = '#ffffff';
	cellClr[1].on  = '#006699';		// bio
	cellClr[1].off = '#003366';
	cellClr[2].on  = '#666666';		// disco
	cellClr[2].off = '#660000';
	cellClr[3].on  = '#FF9933';		// reviews
	cellClr[3].off = '#336699';
	cellClr[4].on  = '#6699cc';		// contact
	cellClr[4].off = '#cccccc';

	if (switcher) {
		document.getElementById(menu+'Cell').bgColor = cellClr[section].on;
		document.getElementById(menu+'Link').style.color = fontClr[section].on;
	} else {
		document.getElementById(menu+'Cell').bgColor = cellClr[section].off;
		document.getElementById(menu+'Link').style.color = fontClr[section].off;
	}
}
//-->