function initMenu() {
	if(typeof curr == 'undefined') curr = 'no_type';
  	//alert(curr);
  $('#menu_items ul').hide();
  $('#menu_items #'+curr).show();
  $('#menu_items 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_items ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});
