/* <!-- Suckerfish Drop Down Javascript --> */
/* <!-- Original Suckerfish - http://www.htmldog.com/articles/suckerfish/example/ -->  */

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;


/* <!-- Son of Suckerfish Drop Down Javascript -->
<!-- http://www.htmldog.com/articles/suckerfish/dropdowns/ -->
<!-- http://www.htmldog.com/articles/suckerfish/dropdowns/example/ -->
<!-- Original Suckerfish - http://www.htmldog.com/articles/suckerfish/example/ -->  */

/*
sfHover = function() {
	var sfEls = document.getElementById("navx").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
*/



/* E-mail re-write / encoder ?? */
/*function writeEMail(pLinkText, pSubject)
{
var v2="EM8YW5E36YCMN6DIHPD6RGG";
var v7=unescape("6%2CT%3C%24u%28JR8-.+E%2C%268%20%21%181%28*");
 var v5=v2.length;var v1="";
 for(var v4=0;v4<v5;v4++)
 {
  v1+=String.fromCharCode(v2.charCodeAt(v4)^v7.charCodeAt(v4));
 }
document.write('<a href="javascript:void(0)" onclick="window.location=\'mail\u0074o\u003a'+v1+'?subject='+escape(pSubject)+'\'">'+pLinkText+'</a>');
}*/