<!--
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;
//-->
<!--
if (document.images) {
arImgSrc = new Array (
"images/template/nav1_1.gif","images/template/nav1_2.gif","images/template/nav2_1.gif","images/template/nav2_2.gif",
"images/template/nav3_1.gif","images/template/nav3_2.gif","images/template/nav4_1.gif","images/template/nav4_2.gif",
"images/template/nav5_1.gif","images/template/nav5_2.gif","images/template/nav6_1.gif","images/template/nav6_2.gif")
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/template/" + original + "1.gif"}
       else {otherImg.src = "images/template/" + original + "2.gif"};
}
whichImg = document.images[imgName];
if (isOver) {whichImg.src = "images/template/" + imgName + "2.gif"}
       else {whichImg.src = "images/template/" + 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=300,height=500');
	}

if(navigator.appVersion.indexOf('Mac') != -1){
	document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="css/styles.css">');
}
else{
	document.write('<LINK REL="stylesheet" TYPE="text/css" HREF="css/styles.css">');
}
//-->