<!--
function styleOver (navblock, navtext) {
	
	// change the hex values below for the onMouseover event
	// these control the onState background colors for the two layers
	var navblockColor = '#ff6600';
	var navtextColor = '#999999';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(navtext).style.backgroundColor = navtextColor;
	}
	
	else {
		// W3C DOM
		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(navtext).style.backgroundColor = navtextColor;
	}
}

function styleOut (navblock, navtext) {

	// change the hex values below for the onMouseover event
	// these control the offState background colors for the two layers
	var navblockColor = '#b4b4b4';
	var navtextColor = '#cccccc';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(navtext).style.backgroundColor = navtextColor;
	}
	
	else {
		// W3C DOM
		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(navtext).style.backgroundColor = navtextColor;
	}
}

function styleOver2 (navblock, navtext, navtextColor) {
	
	// change the hex values below for the onMouseover event
	// these control the onState background colors for the two layers
	var navblockColor = '#ff6600';
	//var navtextColor = '#999999';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(navtext).style.backgroundColor = navtextColor;
	}
	
	else {
		// W3C DOM
		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(navtext).style.backgroundColor = navtextColor;
	}
}

function styleOut2 (navblock, navtext, navtextColor) {

	// change the hex values below for the onMouseover event
	// these control the offState background colors for the two layers
	var navblockColor = '#b4b4b4';
	//var navtextColor = '#cccccc';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(navtext).style.backgroundColor = navtextColor;
	}
	
	else {
		// W3C DOM
		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(navtext).style.backgroundColor = navtextColor;
	}
}

function buttonOver (button, navtext) {

	if (document.all) {
		button.menu = document.all(navtext);
	}

	else {
		button.menu = document.getElementById(navtext);
	}

	button.menu.style.visibility = "visible";
}

function buttonOut (button, navtext) {

	if (document.all) {
		button.menu = document.all(navtext);
	}

	else {
		button.menu = document.getElementById(navtext);
	}

	button.menu.style.visibility = "hidden";

}
// -->

