<!--
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}
// toggle actions
// actions to assign to elements
var jobActions = {	
	'div.desc' : function(item){
		item.style.display = "none";
	},
	'a.btn' : function (item) {
		item.onclick = function () {
			var temp = item.className;
			var target = document.getElementById(temp.replace("btn ", ""));
			var styler;
			if (target.style.display == "none") {	
				styler = "";							
			} else {	
				styler = "none";					
			}		
			target.style.display = styler; 				
		}
	}
}
// thanks suckerfish
ddMenuStart = function() {
	// flag current tab (if page requires)
	
	if (document.getElementById(pageID)) {
		pageTab=document.getElementById(pageID);
		pageTab.className="on";
	}
		if (document.all&&document.getElementById) {	
			navRoot = document.getElementById("ddTabs");
			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", "");					
	   				}
	   			}
	  		}		
	 	}
	
}
// start it up
addLoadEvent(ddMenuStart);
//-->