// JavaScript Document

menu_status = new Array();
var ouv=null;
function showHide(theid){

if(ouv!=null&&ouv!=theid)
{
var switch_id = document.getElementById(ouv);
 switch_id.className = 'hide';
           menu_status[ouv] = 'hide';
 }
 
 ouv=theid;
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);

          
		   if(menu_status[ouv] != 'show') {
           switch_id.className = 'show';
           menu_status[ouv] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[ouv] = 'hide';
        }
        
    }

 
}

