jQuery(document).ready(function() {

	jQuery('#partner-wrap ul').jcarousel( {
		auto: 2,
		scroll: 1,
		animation: 'slow',
        wrap: 'last'
	});
	
	if( $('.ad-gallery').length > 0 ) {
		var galleries = $('.ad-gallery').adGallery();
		galleries[0].settings.effect = 'fade';
		$('#toggle-slideshow').click(
		  function() {
			galleries[0].slideshow.toggle();
			$('.lightbox').lightBox();
			return false;
		  }
		);
		
		 $('.lightbox').lightBox();
		
	}
	
	if($('#lightbox-wrap').length > 0) {
		$('#lightbox-wrap li a').lightBox();
	}
	
	if($('#accordion').length > 0) {
		$('#accordion').accordion({
		active: false,
		collapsible: true,
		autoHeight: false
		});
	}
	
});

