
function highlightCurrentMenuItem(currentLocation) { 
  if(document.location.href=='http://www.freeorangecountycounseling.com/' || document.location.href=='http://freeorangecountycounseling.com/'){
	   (currentLocation = "");
	}
	if(currentLocation==null){
		currentLocation = getLeaf(document.location.href);}
	var menu = document.getElementById("indentmenu"); 
	links = menu.getElementsByTagName("a"); 
	for (i=0; i<links.length; i++) { 
		var currentHref = links[i].getAttribute("href"); 
	     
		var currentLeafName = getLeaf(currentHref); 
 
		if (currentLeafName==currentLocation){ 
			   links[i].setAttribute("class", "current");
			   links[i].setAttribute("className", "current"); 
			   disableLink(links[i]);
 		   
		}
	}
}


function getLeaf(url) { return url.substring(url.lastIndexOf("/")+1); } 

function cancelLink () {
  return false;
}

function disableLink (link) {
  if (link.onclick)
    link.oldOnClick = link.onclick;
  link.onclick = cancelLink;
  if (link.style)
    link.style.cursor = 'default';
}

