// JavaScript Documentmenu_status = new Array(); 	function showHide(theid){    if (document.getElementById) {    var switch_id = document.getElementById(theid);	/*var _mymenu1 = document.getElementById('mymenu1');		_mymenu1.className = 'hide';	var _mymenu3 = document.getElementById('mymenu3');		_mymenu3.className = 'hide';	var _mymenu7 = document.getElementById('mymenu7');		_mymenu7.className = 'hide';			*/		    switch_id.className = 'show';        if(menu_status[theid] != 'show') {           switch_id.className = 'show';           menu_status[theid] = 'show';        }else{           switch_id.className = 'hide';           menu_status[theid] = 'hide';        }    }}
