function checkActive(id) {
var und;
var a = document.getElementById(id).getElementsByTagName("li");	
if (window.location.href.substr(location.href.length - 1, 1) == '/') {
var loc = window.location.href;
	}
	else {
		var loc = window.location.href;
	}
	
	//********************************************************************************************
		for(var i=0; i < a.length; i++) {
			
			if (a[i].getElementsByTagName("a")[0].href == loc) {
			a[i].className="selected";
	
a[i].parentNode.style.display = "block";

			}

			
			}

	//********************************************************************************************

}
