menu_status = new Array();

function showHide(theid) {
    if (document.getElementById) {
        var switch_id = document.getElementById(theid);

        if (menu_status[theid] != 'show') {
            switch_id.className = 'show';
            menu_status[theid] = 'show';
            document.getElementById('clubinfo').setAttribute('style', 'background-color:Black;');            
            
        } else {
            switch_id.className = 'hide';
            menu_status[theid] = 'hide';            
        }
    }
}

function chkMenuStatus(theid) 
{
if (theid != null)
{
    if (theid != '' && theid != 'clubinfo')
        {
            var x = document.getElementById(theid);
            if (x.getAttribute('style') != null) { x.removeAttribute('style'); }
            else 
            {
                if (theid == 'aerobics' || theid == 'kleuterkampen' || theid == 'sportkampen' || theid == 'start to move' || theid == 'stijldansen' || theid == 'zumba'
                || theid == 'missie' || theid == 'verleden' || theid == 'linken' || theid == 'team') {
                    x.setAttribute('style', 'background-color:Black;color:#fff;');
                    if (theid == 'missie' || theid == 'verleden' || theid == 'linken' || theid == 'team')
                    {
                        showHide('mymenu1');
                    }
                }
                else
                { x.setAttribute('style', 'background-color:Black;'); }
            }
         }
}
}


var zimmomanual = false;
var scroll_left = 0;
function scrollit() {
    if (!zimmomanual) {
        document.getElementById("zimmoscroller").scrollLeft = document.getElementById("zimmoscroller").scrollLeft + 1;        
    }
    window.setTimeout("scrollit()", 45);
}
