<!--
function fn_check_email(email, msg) {

	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;
	if (filter.test(email)) {
		return true;
	} else{
		alert(msg);
		return false;
	}
}
startList = function() {
			navRoot1 = document.getElementById("nav");
			Add(navRoot1);

			function Add(navRoot) {
				if (document.all&&document.getElementById) {
					for (i=0; i<navRoot.childNodes.length; i++) {
						node = navRoot.childNodes[i];
						if (node.nodeName=="LI") {
							for (ii=0; ii<node.childNodes.length; ii++) {
								 if (node.childNodes[ii].nodeName == "UL") {
									if (document.all&&document.getElementById) {
									   UlNode = node.childNodes[ii];
									   for (iii=0; iii<UlNode.childNodes.length; iii++) {
											UlLiNode = UlNode.childNodes[iii];
											if (UlLiNode.nodeName=="LI") {
												UlLiNode.onmouseover=function() {
													this.className+=" over";
												}
												UlLiNode.onmouseout=function() {
													this.className=this.className.replace(" over", "");
												}
											}
									   }
									}
								 }

							}
							node.onmouseover=function() {
								this.className+=" over";
							}
							node.onmouseout=function() {
								this.className=this.className.replace(" over", "");
							}
						}
					}
				}
				return;
			}
}
window.onload=startList;

//-->
