function runAll() {
	setCurrentPage('SubLeftNav');
	if (document.getElementById('side-r') != null) {	
		setCurrentPage('side-r');
	}
}


function setCurrentPage(divName) { 

	var currentPage = window.location.href; 
	var navigationContainer = document.getElementById(divName); 
	var navBarlinkCollection = navigationContainer.getElementsByTagName('a'); 
	var j;

	for (j=0; j<navBarlinkCollection.length; j++) {
		if (currentPage == navBarlinkCollection[j].href) { 
			//navBarlinkCollection[j].style.color = '#999999'; 
			//navBarlinkCollection[j].style.textDecoration = 'none';
			navBarlinkCollection[j].style.fontWeight = 'bold';
			//alert(navBarlinkCollection[j].href  + " -- " + currentPage);
		}
	}
}

