/*****************************/
/* Uniway s.a.               */
/* All rights reserved ©2007 */
/* info@uniway.be            */
/*****************************/
//
function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
/*
startList = function () {
	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 = "";
			};
		}
	}
};
window.onload = startList;
*/