<!--
  function navigateTo(theTD, NewWindow){
  	if(theTD.childNodes){
		var Cnodes = theTD.childNodes;
		for(var i=0; i<Cnodes.length; i++){
			if(Cnodes[i].tagName && Cnodes[i].tagName.toLowerCase() == "a"){
				var TheURL = Cnodes[i].href;
				if(TheURL){
					if(NewWindow){
						window.open(TheURL);
					}
					else{
						top.location.href = TheURL;
					}					
				}
			}
		}
	}	
  }
  
  function setHover(theTD, MouseIsOverTD){
  	if(theTD.childNodes){
		var Cnodes = theTD.childNodes;
		theTD.style.cursor = 'hand';
		if(MouseIsOverTD){
			//theTD.className = 'menualt';			
			for(var i=0; i<Cnodes.length; i++){
				if(Cnodes[i].tagName && Cnodes[i].tagName.toLowerCase() == "a"){
					Cnodes[i].style.color = '#93ADDE';
				}
			}	
		}
		else{
			//theTD.className = 'menu';
			for(var i=0; i<Cnodes.length; i++){
				if(Cnodes[i].tagName && Cnodes[i].tagName.toLowerCase() == "a"){
					Cnodes[i].style.color = '';
				}
			}			
		}
	}	
  }
