// Expand Box Javascript

menu_status = new Array();

function showHide(logintop){

    if (document.getElementById) {
    var switch_id = document.getElementById(logintop);

        if(menu_status[logintop] != 'show') {
           switch_id.className = 'show';
           menu_status[logintop] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[logintop] = 'hide';
        }

		
    }
}

