$(document).ready(function(){
	jQuery('#carousel').jcarousel();

	$('#cycle').cycle({
        fx:     'fade',
        speed:  'fast',
        timeout: 10000,
        pager:  '#nav',
        before: function() { if (window.console) console.log(this.src); }
    });

		$('#loc ul').hide();
		$('#loc li a').click(
			function() {
				$(this).next().slideToggle('normal');			
				$(this).parent().toggleClass("selected");
			}
		);
		
});