
function initMenu() {
  $('.menu ul').hide();
	if(category_id==3){
		$('#civilsociety').show();
	}else if(category_id==4){
		$('#philanthropic').show();
	}else if(category_id==5){
		$('#corporate').show();
	}else{
		//do nothing - leave collapsed
	}
  $('.menu li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('.menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});

