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