function initMenu() {
  $('#slidebox ul').hide();
  $('#slidebox ul:first').hide();
  $('#slidebox li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
      
      	//$('.jcarousel-container DIV').hide();
      	$('#agendaitems2').hide();
        $('#slidebox ul:visible').slideUp('normal');

		if (checkElement.find(".jcarousel").length >= 1) {
			//$('.jcarousel-container DIV').show();
			$('#agendaitems2 DIV').show();
			$('#agendaitems2').fadeIn(1000);			
			}

        checkElement.slideDown('normal');

		if (checkElement.find(".jcarousel").length >= 1) {
			initCarousel();
			}

        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});

function initCarousel() {
	jQuery('.jcarousel').jcarousel({
		vertical: true,
		scroll: 1
	});
}