<!--
menu_status = new Array(); 

function showHide3(theid, theid2){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    var switch_id2 = document.getElementById(theid2);

        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';
		   }
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}

//-->

