$(document).ready(function() {
	
	//Hide (Collapse) the toggle containers on load
	$(".toggle").hide(); 
	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("a.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("fast");
	});
	
	//Homepage Slideshow Cycle
	$('#main-stage')
	.before('<div id="pager">')
	.cycle({
		'timeout' : 8000,
    'pager' : '#pager'
	});
	
	//Homepage Testimonial Cycle
	$('#testimonial-slideshow').cycle({
		'cleartypeNoBg' : 1,
    timeout: 8000
	});
	
	// Fancybox
  $("a.doc").fancybox({
			'width'				: '85%',
			'height'			: '85%',
	    'autoScale'   : false,
	    'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'overlayColor' : '#000',
			'overlayOpacity' : 0.7
	});
});
