// initialise plugins
$(document).ready(function() {
	
	$('.rotate').cycle({
		fx: 'fade'
	});
	
	
	$(function() {
		$('#scroll')
			.cycle({
			timeout: 8000,
			fx: 'scrollHorz',
			speed: 500,
			before: onBefore,
			cleartype:  true,
			pause: 1,
			pager: '#pager'
		});
	});
	function onBefore() {
		$('#feature-title').html(this.title);
	}
	
	$("nav.sub").sticky({topSpacing:0});
	
	/* Lightbox plugin - Fancybox */
	$("a[rel=gallery-group]").fancybox({
		'hideOnContentClick': false,
		'overlayOpacity' : 0.5,
		'titleShow' : false
	});
	
	/* Activating all the FAQ Accordions */
	$('#accordion-1').accordion({
		active: false,
		header: "a.heading",
		autoHeight: false
	});
	$('#accordion-2').accordion({
		active: false,
		header: "a.heading",
		autoHeight: false
	});
	$('#accordion-3').accordion({
		active: false,
		header: "a.heading",
		autoHeight: false
	});
	$('#accordion-4').accordion({
		active: false,
		header: "a.heading",
		autoHeight: false
	});
	
});
