 
    // Telif haklari webabi.com 'a aittir.

    function ResetTimer() {
    clearTimeout(timerID);
    }

    function StartTimer() {
    timerID = setTimeout('HideAll()', acilirmenutime);
    }

    function HideMenu(menuid) {
    document.getElementById(menuid).style.display="none";
    }

    function ShowMenu(menuid) {
    HideAll();
    document.getElementById(menuid).style.display="block";
    }

    function HideAll() {
    for (i=1;i<=acilirmenucount;i++) {
      HideMenu("acilir"+i);
    }
    }



    var acilirmenucount = 6;  

    var acilirmenutime = 100; 
    var timerID = null;    

