<!--
menu_status = new Array(); 

function showHide5(theid, theid2, theid3, theid4){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    var switch_id2 = document.getElementById(theid2);
    var switch_id3 = document.getElementById(theid3);
    var switch_id4 = document.getElementById(theid4);
    var switch_id9 = document.getElementById('H');

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
           if(menu_status[theid2] = 'show') {
              switch_id2.className = 'hide';
			  menu_status[theid2] = 'hide';
		   }
           if(menu_status[theid3] = 'show') {
              switch_id3.className = 'hide';
			  menu_status[theid3] = 'hide';
		   }
           if(menu_status[theid4] = 'show') {
              switch_id4.className = 'hide';
			  menu_status[theid4] = 'hide';
		   }
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
           switch_id9.className = 'show';
           menu_status[H] = 'show';
        }
    }
}

//-->
