
function styleOver (navblock, nava) {
	
	// change the hex values below for the onMouseover event
	// these control the onState background colors for the two layers
//	var navblockColor = '#c1d62f';
	var navtextColor = '#000000';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
//		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(nava).style.color = navtextColor;
		document.all(navblock).style.cursor = "pointer";
		document.all(navblock).className='navover';
	}
	
	else {
		// W3C DOM
//		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(nava).style.color = navtextColor;
		document.getElementById(navblock).style.cursor = "pointer";
		document.getElementById(navblock).className='navover';
	}
}

function styleOut (navblock, nava) {

	// change the hex values below for the onMouseover event
	// these control the offState background colors for the two layers
//	var navblockColor = '#ffffff';
	var navtextColor = '#ffffff';

	//******	NO NEED TO EDIT BELOW THIS LINE	 ******

	if (document.all) {
		// IE-specific DOM
//		document.all(navblock).style.backgroundColor = navblockColor;
		document.all(nava).style.color = navtextColor;
		document.all(navblock).style.cursor = "default";
		document.all(navblock).className='navout';
}
	
	else {
		// W3C DOM
//		document.getElementById(navblock).style.backgroundColor = navblockColor;
		document.getElementById(nava).style.color = navtextColor;
		document.getElementById(navblock).style.cursor = "default";
		document.getElementById(navblock).className='navout';		
	}
}