jQuery(document).ready(function() {
    
	jQuery('#carousel').jcarousel({
        scroll: 1,
		wrap: 'both'
    });

	$('h2.accord-handle').click(function() {
		$(this).next("ul").slideToggle(300).siblings("ul").slideUp("slow");
	});

});