menu_status = new Array();

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);
        if(switch_id.className != 'show') {
           switch_id.className = 'show';
        }else{
           switch_id.className = 'hide';
        }
    }
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

$(function() {
    $('#showhide').showhide({
      target_obj: $('#hidemenu')
    });
}); 

