$(document).ready(function() {
	$("ul.sf-menu").superfish({
		animation: {opacity:'show'},
		speed: 'fast',
		autoArrows: false,
		dropShadows: false	
	}); 
	
	$("#spotlight").jcarousel({
        scroll: 1,
		auto: 5,
		wrap: 'last',
        initCallback: init,
        // This tells jCarousel NOT to autobuild prev/next buttons
        buttonNextHTML: null,
        buttonPrevHTML: null
    });
	
	$('a.open-ccg-modal').click(function (e) {
		e.preventDefault();
		$('#ccg-modal_content').modal({
			overlayClose: true,
			closeHTML: ''
		});
	});
});
