	$().ready(function()
	 {
		$('#menu li').find('a').not('.active').next().hide();
		$('#menu li:has(ul) a').click(function()
			{
		  if ($(this).hasClass('active'))
					{
			  var thisOne = $(this);
			  if( $(this).next().find('a').length == 0 ){
					return true;
			  }
			  $(this).next().slideUp('fast', function() {
					thisOne.removeClass('active').next().find('a').removeClass('active').next().hide();
				});
			}
		else
			{
		 var thisOne = $(this);
	  if( $(this).next().find('a').length == 0 ){
			return true;
	  }
		thisOne.parent().parent().children('li').children('a').not(thisOne).removeClass('active').next().slideUp('fast').find('a').removeClass('active').next().hide();
		thisOne.addClass('active').next().slideDown('fast');
		return false;
		}
	return false;
	});
});
