// Jquery Cycle Lite Plugin - http://jquery.malsup.com/cycle/lite/
$(function() {
	$('.showcase p').cycle({
		fx: 'fade',
		timeout: 8000
	});
});

$(function() {
	$('.showcase p a').cycle({
		fx: 'fade',
		timeout: 8000
	});
});

$(function() {
	$('.showcase a').cycle({
		fx: 'fade',
		timeout: 8000
	});
});

$(function() {
	$('.showcase').cycle({
		fx: 'fade',
		timeout: 8000
	});
});

$(function() {
	$('.showcase img').cycle({
		fx: 'fade',
		timeout: 8000
	});
});

// Toggler used on the FAQS page
$(function() {
	$(".answer").hide(); 
	$("h3.question").click(function(){
		$(this).toggleClass("active").next().slideToggle("fast");
		return false;
	});
});
