$(document).ready(function() {
	
	//collapse/expand
	Collapser.init();
	
	//homepage sponsor slideshow
	$('#js-homepage-slideshow').cycle({
		fx: 'fade'
	});

	//hide non-js mode and display js mode
	$('.non-js-compatible').hide();
	$('.js-compatible').show();
	
	//show full view slideshow
	$('#js-show-slideshow').cycle({ 
	    fx:     'turnDown', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#js-slideshow-nav', 
	     
	    // callback fn that creates a pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
			return '#js-slideshow-nav li:eq(' + idx + ') a'; 
	    } 
	});
	
	//carousel
	$('.js-carousel').jcarousel({
        scroll: 	5,
        visible: 	5
    });
	
	//menu
	$('#js-menu').superfish();
	
});
