function initMenu() {
  $('#menu ul').hide();
  $('#menu ul').each(function(index) {
		if(index == 2 || index == 4 || index == 6) $(this).show();
  });

  $('#menu li a').click(
    function() {
        if($(this).next().is("ul")) {
						$(this).next().slideToggle('normal');
        		return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});

