// this function controls the submenu rollover effects
function navRollOver(obj, state) {
	document.getElementById(obj).className = (state == 'on') ? 'nav-highlight' : 'nav';
	}
