// controlls vertical cascading CSS menu/* if(navigator.appName == "Netscape"){ window.location = ""}	 if(navigator.appName == "Microsoft Internet Explorer")	{	 alert("For temporary reasons you are not able to view our site with Internet Explorer, please download and install Firefox to continue.")	 window.location = "http://www.mozilla.org/products/firefox/"} window.location == ""*/startList = function() {	// code for IE	if(!document.body.currentStyle) return;	var subs = document.getElementsByName('submenu');	for(var i=0; i<subs.length; i++) {		var li = subs[i].parentNode;		if(li && li.lastChild.style) {			li.onmouseover = function() {				this.lastChild.style.visibility = 'visible';			}			li.onmouseout = function() {				this.lastChild.style.visibility = 'hidden';			}		}	}}window.onload=startList;