// JavaScript Document
function mainMenu(){
	document.getElementById('sermainmenu').innerHTML='<p class="sermainmenu" onMouseover="showSubMenu(\'finance\');" id="finance"><a href="#" >Finance/Admin</a></p><p class="sermainmenu" onMouseover="showSubMenu(\'workforce\');" id="workforce"><a href="#">Workforce</a></p><p class="sermainmenu" onMouseover="showSubMenu(\'deanna\');" id="deanna"><a href="#" >DeAnna Sanchez</a></p><p class="sermainmenu" onMouseover="showSubMenu(\'cdc\');" id="cdc"><a href="#" >CDC</a></p><p class="sermainmenu" onMouseover="showSubMenu(\'board\');" id="board"><a href="http://serjfp.org/board.html" >Board of Directors</a></p>';
}

function bottomMenu(){
	 document.getElementById('bottommenu').innerHTML='<img src="http://serjfp.org/images/footer.jpg" class="bottommenu"/><p class="bottommenu"><a href="http://serjfp.org/index.html">Home</a><a href="http://serjfp.org/contactus.html"> Contact Us </a> <a href="http://serjfp.org/aboutus.html"> About Us</a><br /><a href="http://serjfp.org/finance/finance.html">Finance/Admin</a><a href="http://serjfp.org/workforce/workforce.html">Workforce</a><a href="http://serjfp.org/golftournament/deanna.html"> DeAnna Sanchez</a> <a href="http://serjfp.org/cdc/cdc.html">CDC</a> <a href="http://serjfp.org/board.html">Board of Directores</a></p>';
}

//this function highlights the menu items to show where the use is at.
function highlightMenu(){
	var currentUrl = document.location.href;
	var currentPage=currentUrl.split("/");
	var page = currentPage.pop();
	
	//finance and administration
	if(page == "finance.html" || page == "current.html" || page == "future.html" || page == "reports.html"){
		
		
		document.getElementById('workforce').style.fontWeight='normal';
		document.getElementById('deanna').style.fontWeight='normal';
		document.getElementById('cdc').style.fontWeight='normal';
		document.getElementById('finance').style.fontWeight='bold';
	}
	//workforce
	else if(page == "workforce.html" || page == "northern.html" || page == "central.html" || page == "areareports.html"){
		
		document.getElementById('finance').style.fontWeight='normal';
		document.getElementById('deanna').style.fontWeight='normal';
		document.getElementById('cdc').style.fontWeight='normal';
		document.getElementById('workforce').style.fontWeight='bold';
	}
	//deanna
	else if(page == "deanna.html" || page == "golftournament.html" || page == "scholarships.html" || page == "receipients.html"){
		document.getElementById('finance').style.fontWeight='normal';
		document.getElementById('workforce').style.fontWeight='normal';
		document.getElementById('cdc').style.fontWeight='normal';
		document.getElementById('deanna').style.fontWeight='bold';
	}
	//cdc
	else if(page == "cdc.html" || page == "requirements.html" || page == "cdcstaff.html" || page == "cyfd.html" || page=="events.html" || page=="questionnaire.html"){
		document.getElementById('finance').style.fontWeight='normal';
		document.getElementById('workforce').style.fontWeight='normal';
		document.getElementById('deanna').style.fontWeight='normal';
		document.getElementById('cdc').style.fontWeight='bold';
	}
	//board
	else if(page=="board.html"){
		document.getElementById('finance').style.fontWeight='normal';
		document.getElementById('workforce').style.fontWeight='normal';
		document.getElementById('deanna').style.fontWeight='normal';
		document.getElementById('cdc').style.fontWeight='normal';
		document.getElementById('board').style.fontWeight='bold';
	}
}

function profileMenu(){
	document.getElementById('profilemenu').innerHTML='<b>Northern Area:</b> <a href="cibola.html" class="profile">Cibola</a>, <a href="colfax.html" class="profile">Colfax</a>, <a href="losalamos.html" class="profile">Los Alamos</a>, <a href="mckinely.html" class="profile">McKinley</a>, <a href="mora.html" class="profile">Mora</a>,<a href="rioarriba.html" class="profile"> Rio Arriba</a>, <a href="sanjuan.html" class="profile">San Juan</a>, <a href="santafe.html" class="profile">Santa Fe</a>, <a href="sanmiguel.html" class="profile" >San Miguel</a>, and <a href="taos.html" class="profile" >Taos</a>.<br /> <b>Central Area:</b> <a href="bernallio.html" class="profile"> Bernalillo</a>, <a href="sandoval.html" class="profile">Sandoval</a>, <a href="torrance.html" class="profile">Torrance</a>, and <a href="valencia.html" class="profile">Valencia</a>.';
}
