  var bIsIE = navigator.appName == "Microsoft Internet Explorer"
  var bIsIE4 = bIsIE && navigator.appVersion.indexOf("4.0") > -1  
  if (bIsIE4) { 
    sCSS = '<LINK REL="stylesheet" TYPE="text/css" HREF="/includes/goldenfly.css">' 
  }  
  else {
    if (bIsIE) {
      sCSS = '<LINK REL="stylesheet" TYPE="text/css" HREF="/includes/goldenfly1.css">'    
    } 
    else { 
      sCSS = '<LINK REL="stylesheet" TYPE="text/JavaScript" HREF="/includes/goldenfly.js">'    
    }
  }
  document.write(sCSS)


function imgSrc (name) {
  this.on = new Image();
  this.on.src = name + "1.gif"
  this.off = new Image();
  this.off.src = name + ".gif"
}

function load_images () {
  imgSrc['ho'] = new imgSrc('images/ho');
  imgSrc['tr'] = new imgSrc('images/tr');
  imgSrc['sa'] = new imgSrc('images/sa');
  imgSrc['ca'] = new imgSrc('images/ca');
  imgSrc['ne'] = new imgSrc('images/ne');
  imgSrc['ad'] = new imgSrc('images/ad');
  imgSrc['re'] = new imgSrc('images/re');
  imgSrc['li'] = new imgSrc('images/li');
  imgSrc['gu'] = new imgSrc('images/gu');
  imgSrc['co'] = new imgSrc('images/co');


}

function OnImage (imgName) {
    if (document.images) document[imgName].src = imgSrc[imgName].on.src;
}

function OffImage (imgName) {
    if (document.images) document[imgName].src = imgSrc[imgName].off.src;
}

if (document.images != null) load_images();