<!--
function rollout(obj){
    if (menu = obj.firstChild.nextSibling) {
        if (menu.className != "menuSubActive") {
//            menu.style.height="22px";
            menu.style.display = "block";
//            for (var i=0; i <= menu.childNodes.length*22; i++) {
//                setTimeout("menu.style.height = 0;", 200);
//                menu.style.height = i+'px';
//                alert(menu.style.height+22);
//                setTimeout("menu.style.height = 22", 2000);
//           }
        }
    }
}

function rollin(obj){
    if (obj.firstChild.nextSibling) {
        if (obj.firstChild.nextSibling.className != "menuSubActive") {
            obj.firstChild.nextSibling.style.display = "none";
        }
    }
}
-->
