
function setCurrentPage() { 
// Set the class of the current page nav link to "active".
// Call it by placing onload="setCurrentPage();" in the <body> element


	var navigationContainer = document.getElementById('navbar'); 
	var navBarLinkCollection = navigationContainer.getElementsByTagName('a'); 
	var j;
	for (j=0;j < navBarLinkCollection.length;j++) { 
		if(navigationContainer.className == navBarLinkCollection[j].className) {
			navBarLinkCollection[j].className = 'active'; 
		}
	}
}

function OldsetCurrentPage() { 
// Set the class of the current page nav link to "active".
// Call it by placing onload="setCurrentPage();" in the <body> element
	var currentPage = window.location.href; 
	var navigationContainer = document.getElementById('navbar'); 
	var navBarLinkCollection = navigationContainer.getElementsByTagName('a'); 
	var j;
	for (j=0;j < navBarLinkCollection.length;j++) { 
		if (currentPage == navBarLinkCollection[j].href) { 
			navBarLinkCollection[j].className = 'active'; 
		}
	}
}