synopened=false;
//Rollovers
bname = navigator.appName;
bvers = parseInt(navigator.appVersion);
if (bname == "Netscape" && bvers >=3) {
   version = "n3";
}
else if (bname == "Microsoft Internet Explorer" && bvers >=3) {
   version = "n3";
}
else {
   version ="n2";
}

if (version == "n3") {

   About_CIAT_on      = new Image;
   About_CIAT_on.src  = "http://www.ciatonline.com/resources/img/nav/about-ciatRollover.jpg";
   About_CIAT_off     = new Image;
   About_CIAT_off.src = "http://www.ciatonline.com/resources/img/nav/about-ciat.jpg";
   
   Recent_News_on      = new Image;
   Recent_News_on.src  = "http://www.ciatonline.com/resources/img/nav/recent-newsRollover.jpg";
   Recent_News_off     = new Image;
   Recent_News_off.src = "http://www.ciatonline.com/resources/img/nav/recent-news.jpg";
   
   Software_Solutions_on      = new Image;
   Software_Solutions_on.src  = "http://www.ciatonline.com/resources/img/nav/software-solutionsRollover.jpg";
   Software_Solutions_off     = new Image;
   Software_Solutions_off.src = "http://www.ciatonline.com/resources/img/nav/software-solutions.jpg";
   
   Consulting_Solutions_on      = new Image;
   Consulting_Solutions_on.src  = "http://www.ciatonline.com/resources/img/nav/consulting-solutionsRollover.jpg";
   Consulting_Solutions_off     = new Image;
   Consulting_Solutions_off.src = "http://www.ciatonline.com/resources/img/nav/consulting-solutions.jpg";
   
   Business_Partners_on      = new Image;
   Business_Partners_on.src  = "http://www.ciatonline.com/resources/img/nav/business-partnersRollover.jpg";
   Business_Partners_off     = new Image;
   Business_Partners_off.src = "http://www.ciatonline.com/resources/img/nav/business-partners.jpg";
   
   Contact_Us_on      = new Image;
   Contact_Us_on.src  = "http://www.ciatonline.com/resources/img/nav/contact-usRollover.jpg";
   Contact_Us_off     = new Image;
   Contact_Us_off.src = "http://www.ciatonline.com/resources/img/nav/contact-us.jpg";
   
   Case_Studies_on      = new Image;
   Case_Studies_on.src  = "http://www.ciatonline.com/resources/img/nav/case-studiesRollover.jpg";
   Case_Studies_off     = new Image;
   Case_Studies_off.src = "http://www.ciatonline.com/resources/img/nav/case-studies.jpg";
   
}

function active(iname) {
  if (version == "n3") {
     imgOn = eval(iname + "_on.src");
     document[iname].src = imgOn;
  }
}

function inactive(iname) {
  if (version == "n3") {
     imgOff = eval(iname + "_off.src");
     document[iname].src =  imgOff;
  }
}