//define the home
window.name = "home";

//these functions are used to enable the cell highlighting in sidebarleft.inc
function NavRollOver(oTd) {
	oTd.className="cell_over";
}
function NavRollOut(oTd) {
	oTd.className="cell_out";
}
// BEGIN Mouseovers and Mouseouts in the Business Resources Section
function NavRollOverBus(oTd) {
	oTd.className="cell_over_bus";
}
function NavRollOutBus(oTd) {
	oTd.className="cell_out_bus";
}
// END Mouseovers and Mouseouts in the Business Resources Section

// BEGIN Mouseovers and Mouseouts in the Green Lodging
function NavRollOverGL(oTd) {
	oTd.className="cell_over_gl";
}
function NavRollOutGL(oTd) {
	oTd.className="cell_out_gl";
}
// END Mouseovers and Mouseouts in the Green Lodging

// BEGIN Mouseovers and Mouseouts in the Arizona Resource Exchange
function NavRollOverAREX(oTd) {
	oTd.className="cell_over_arex";
}
function NavRollOutAREX(oTd) {
	oTd.className="cell_out_arex";
}
function NavRollOverTOP(oTd) {
	oTd.className="cell_over_top";
}
function NavRollOutTOP(oTd) {
	oTd.className="cell_out_top";
}

// END Mouseovers and Mouseouts in the Green Lodging

// these functions hide a table and make it visible in Green Lodging

function toggleDiv(id, flagit) {
	if (flagit=="1") {
		if (document.layers) document.layers[''+id+''].visibility = "show";
		else if (document.all) document.all[''+id+''].style.visibility = "visible";
		else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible";

		return;
	}
	if (document.layers) document.layers[''+id+''].visibility = "hide";
	else if (document.all) document.all[''+id+''].style.visibility = "hidden";
	else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden";
}
