function Thatsit(a){
			if (document.getElementById(a).className=="gizli"){
					document.getElementById(a).className="goster";
				} else {
					document.getElementById(a).className="gizli";
				}
}


function PoplaBeni(src,w,h,s) {
	Popwin = window.open(src,"popwin","toolbar=0,width=" + w + ", height=" + h + ", left=100, top=100; location=0, directories=0, status=1, scrollbars="+s+", menubar=0, resizable=0, copyhistory=0");
	Popwin.focus();
	return false;
}


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;