// JavaScript Document
// navTog
function navTog(cell){
	if (cell.style){
		// using rgb colors to accomodate gecko
		cell.style.backgroundColor = (cell.style.backgroundColor == "rgb(239,239,239)") ? "rgb(255,255,255)" : "rgb(239,239,239)";
	}
	return true;
}// end navTog