
// TopMenu controls for IE6 
var LastID='';
var ParentID='';
function TMSet(tID,tSet,cObj) {   // Internet Explorer 6 and earlier version patch
 if (navigator.appName=="Microsoft Internet Explorer" && navigator.appVersion.substr(0,3)<="4.0") {
  if (tSet=='On') {               // Activate on mouse over
   ParentID = document.getElementById(tID).parentElement.parentElement.id; // Get Parent Menu ID
   if (ParentID=='TopMenu') {     // Object is the topmenu
    if (tID!=cObj) {              // Span element
     //cObj.style.background='url(/Images/TopMenu/item-primary-bg.png) center';
     cObj.style.color='black';
    }
    document.getElementById(tID).style.left="0%";   //Set target Menu UL position
   }
   else {                         // object is a sublevel menu
    if (tID!=cObj) {              // Span element
     //cObj.style.background='white url(/Images/TopMenu/item-secondary-bg.png) center';
     cObj.style.color='black';
    }
    document.getElementById(tID).style.top="0%";   //Set target Menu UL position
    document.getElementById(tID).style.left="95%";
   }
   
   LastID=tID;
  }
  else {                          // close open menu
   if (tID!=cObj) {               // Span element
    //cObj.style.background='';
    cObj.style.color='#3030ad'; // /*white*/
   }
   document.getElementById(tID).style.left="-10000px";
  }
 }
}

// -->
