startList = function() {

	if (document.all && document.getElementById) {
		navRoot = document.getElementById("globalmenu");
		
		navRoot.style.marginLeft="-18px";
		navRoot.style.marginTop="-5px";
		
		if(window.navigator.appVersion.indexOf("MSIE 7") > -1) {
			sul = navRoot.getElementsByTagName("ul");
			for(x=0; x<sul.length;x++) {
				sul[x].style.marginLeft = "-80px";
			}
		}
		
		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;


var slides = ["prevent2.png","med2.png","dental2.png","surgery2.png","lab2.png","home2.png","surgery2.png","hosp2.png"];

function showSlide(nm) {

	ig = document.getElementById("shower");
	
	ig.src = "/lib/img/show/"+slides[nm];
	


}