function pageLoad(){
    startList(document.getElementById("insarioMenu").firstChild, function(it){
        moveLineToRight(it);
    });
    startList(document.getElementById("helpMenu").firstChild, function(it){
        moveLineToLeft(it);
    });
}
function forEach(aList, aFunctor){
    for(var index = 0;index < aList.length;index++)
        aFunctor(aList[index], index);
}
function startList(aMenu, afterChange) {
    if(!(document.all && document.getElementById)) return;
    forEach(aMenu.childNodes, function doStyle(each){
        if(each.nodeName == "LI") {
            each.onmouseover = function() {
                this.origClass = this.className;
                this.className = (this.origClass=='Solo') ? "SoloOver": "over";
                afterChange(this);
            };
            each.onmouseout = function() {
                this.className = this.origClass;
                killLineTo(this);
            };
        }
        forEach(each.childNodes, doStyle);
    });
}
