function nav( tableCellRef, hover, item ) {
		switch ( hover ) {
			case 0:
				tableCellRef.style.backgroundColor = '#00EE00';
				break;
			case 1:
				tableCellRef.style.backgroundColor = '#006600';
				break;
			case 2:
				switch ( item ) {
					case 0:
						window.location.href="index.php"
						break;
					case 1:
						window.location.href="abwoon.htm"
						break;
					case 2:
						window.location.href="dances.php"
						break;
					case 3:
						window.location.href="chanting.htm"
						break;
					case 4:
						window.location.href="contactus.htm"
						break;
					case 5:
						window.location.href="locations.htm"
						break;
					default:
					}
			default:
			}
}

