<!--

var dflt="";
if (document.images) {

  image1on = new Image();
  image1on.src = "images/nav12.jpg";

  image2on = new Image();
  image2on.src = "images/nav22.jpg";

  image3on = new Image();
  image3on.src = "images/nav32.jpg";

  image4on = new Image();
  image4on.src = "images/nav42.jpg";

  image5on = new Image();
  image5on.src = "images/nav52.jpg";

  image1off = new Image();
  image1off.src = "images/nav11.jpg";

  image2off = new Image();
  image2off.src = "images/nav21.jpg";

  image3off = new Image();
  image3off.src = "images/nav31.jpg";

  image4off = new Image();
  image4off.src = "images/nav41.jpg";

  image5off = new Image();
  image5off.src = "images/nav51.jpg";

}

function setDefault(imageName) {
  if (document.images) {
    if (dflt != "") {
      document[dflt].src = eval(dflt + "off.src");
    }
    document[imageName].src = eval(imageName + "on.src");
  }
  dflt = imageName;
}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    if (imageName != dflt) {
      document[imageName].src = eval(imageName + "off.src");
    }
  }
}

// -->

<!--
if (document.images) {
arImgSrc = new Array (
"")
arImgList = new Array ();
for (counter in arImgSrc) {
   arImgList[counter] = new Image();
   arImgList[counter].src = arImgSrc[counter];
   }
};
function rollOver(imgName,isOver,original) {
if (!document.images) {return};
if (original != null) {
otherImg = document.images[original];
if (isOver) {otherImg.src = "images/" + original + "1.gif"}
       else {otherImg.src = "images/" + original + "2.gif"};
}
whichImg = document.images[imgName];
if (isOver) {whichImg.src = "images/" + imgName + "2.gif"}
       else {whichImg.src = "images/" + imgName + "1.gif"};
}
function open_window(url){
		mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=375,height=370');
	}

if(navigator.appVersion.indexOf('Mac') != -1){
	document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="css/mac.css">');
}
else{
	document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="css/styles.css">');
}


//-->
