// drop_down

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;


/* Image/Text Swap */

var w3c = (document.getElementById) ? 1:0;
var ns4 = (document.layers) ? 1:0;
var ie4 = (document.all) ? 1:0;

function imgSwap(img,state){

	if(state == "on"){

		tempArray = img.split("_");

		linkName = "link_" + tempArray[1];

		var nsLayer = eval("document." + linkName);

		!ns4?document.getElementById(linkName).style.color = "#F6001F":nsLayer.document.color = "#F6001F";

	}else{


		tempArray = img.split("_");

		linkName = "link_" + tempArray[1];
// on mouse out on text
		!ns4?document.getElementById(linkName).style.color = "#999999":void(0);

	}

}	











// drop_down2

startList = function() {
if (document.all&&document.getElementById) {
nav2Root = document.getElementById("nav2");
for (i=0; i<nav2Root.childNodes.length; i++) {
node = nav2Root.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList;


/* Image/Text Swap */

var w3c = (document.getElementById) ? 1:0;
var ns4 = (document.layers) ? 1:0;
var ie4 = (document.all) ? 1:0;

function imgSwap(img,state){

	if(state == "on"){

		tempArray = img.split("_");

		linkName = "link_" + tempArray[1];

		var nsLayer = eval("document." + linkName);

		!ns4?document.getElementById(linkName).style.color = "#F6001F":nsLayer.document.color = "#F6001F";

	}else{


		tempArray = img.split("_");

		linkName = "link_" + tempArray[1];
// on mouse out on text
		!ns4?document.getElementById(linkName).style.color = "#999999":void(0);

	}

}	
