/* Suckerfish Dropdown Menu */
sfHover = function() {
	var sfEls = document.getElementById("catmenu").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);

/* Jump Menu */
function go(tlist) {
var theList=document.getElementById(tlist);
theList.onchange=function() {
	theOptions=theList.options;
	for (i=0; i<theOptions.length; i++) {
		if (theOptions[i].selected==true && theOptions[i].value!="") {
			if (theOptions[i].className.match('jelement')) {
				window.location=theOptions[i].value;
				}
			else {
				window.open(theOptions[i].value);
				}
			}
		}
	}
}
window.onload=function() {go('jumps');}
