
function moveTo(obj, x, y) {
        if (document.getElementById) {
        document.getElementById('menuDiv').style.left = x;
        document.getElementById('menuDiv').style.top = y;
        }
}

function init(){
        if(document.getElementById){
        obj = document.getElementById("menuDiv");
        obj.style.top = "-169px";
        }
}

function slideDown(){
        if(document.getElementById){
                if(parseInt(obj.style.top) < 460){
                        obj.style.top = parseInt(obj.style.top) + 15 + "px";
                        setTimeout("slideDown()",50);
                }
        }
}


function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

