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';
           keks=theid + "=1";
		   document.cookie=keks;
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
           keks=theid + "=0";
		   document.cookie=keks;
        }
    }
}

function loading() {
	
	a = document.cookie;
	
	if(a.search("menu_ortsfeuerwehr=1")!=-1) { showHide('menu_ortsfeuerwehr'); }
	if(a.search("menu_einsaetze=1")!=-1) { showHide('menu_einsaetze'); }
	if(a.search("menu_technik=1")!=-1) { showHide('menu_technik'); }
	
	
}

