function loadSiteNav()
{
	// ---------------- SIDE NAV ----------------- \\
	var sectionID = "NavSection_" + currentSection;
	var subnavID = "SubNav_" + currentSection;
	var pageID = currentSection + "_" + currentPage;
	
	document.title = currentTitle; // sets page title
	//alert(currentPage);
	// Adds style to sections with no sub nav
	if(subnavID == "SubNav_Home" || subnavID == "SubNav_Contact" || subnavID == "SubNav_Accueil" || subnavID == "SubNav_Nous Contacter" ){ 
		
		document.getElementById(sectionID).className = "menuOpen";}
	
	// Adds style to sections with subnav
	else{
		document.getElementById(sectionID).className = "menuOpen";
		document.getElementById(subnavID).className = "menuSub";}
	
	
	
	// Removes link to current page
	
		var linkDiv = document.getElementById(pageID); // link id
		if(linkDiv != null) {
		var parent = linkDiv.parentNode; // div link is in
		var newText = document.createTextNode(currentPage);
		parent.removeChild(linkDiv); // removes link
		parent.insertBefore(newText,parent.firstChild); // replaces with name of page
		}
	
}
	


