/**
 * Pulldown-Navigation - it will produce specialtask for the last items (ul)
 * it will put them to left side...
 **/
startList = function() {
	
	if (! document.getElementById("inav")) return;
	
	if (document.all&&document.getElementById) {
    	navRoot = document.getElementById("inav");
        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", "");
            	}
			}
		}
	}
	// specialtask for last items to hoop to the left (toolpi)
	if (document.getElementById) {
    	navRoot = document.getElementById("inav");
        for (i=0; i<navRoot.childNodes.length; i++) {
        	node = navRoot.childNodes[i];
			if (i == 6 || i == 13) {
				for (j=0; j<node.childNodes.length; j++) {
					if (node.childNodes[j].nodeName == "UL") {
						node.childNodes[j].className = "secondright";
					}
				}
			}
		}
	}
}
window.onload=startList;
