﻿<!--
menu_status = new Array(); 
function showMenu(theid){      
var switch_id = document.getElementById(theid);
           switch_id.className = 'subMenu show';
           menu_status[theid] = 'show';      
}   
        function hideMenu(theid){       
        var switch_id = document.getElementById(theid);
           switch_id.className = 'subMenu hide';
           menu_status[theid] = 'hide';
}
//-->
  


