function initMenus() {
  $('ul.menu ul').hide();
  $.each($('ul.menu'), function(){
    $('#' + this.id + '.expandfirst ul.current_page_item').show();
  });
  
}
$(document).ready(function() {
  initMenus();
  $('.mainrow2').hide();
  //$('.toggleItems').hide();
  
  $('a.toggleLink').click(function() {
    $(this).parent().parent().parent().next('.mainrow2').toggle();
    return false;  
  });  
  
  $('a.toggleLink2').click(function() {
    $(this).parent().parent().parent().parent().parent().next('.toggleItems').toggle();
    return false;  
  });
  
});


function hideShow(el_id){
  var el=document.getElementById(el_id);
  if(document.getElementById(el_id).style.display!="none"){
    document.getElementById(el_id).style.display="none";
  }else{
    document.getElementById(el_id).style.display="";
  }
}
