//function swapMenu(targetId1, targetId2){
function swapMenu(targetId2){
  if (document.getElementById)
        {
			
		//target1 = targetId1;
        target2 = document.getElementById(targetId2);
        
            if (target2.style.display == "none"){
				//target1.style.color = "red";	
				target2.style.display = "";
			} else {
				//target1.style.color = "#999999";
				target2.style.display = "none";
			}
                
        }
		
}

