$(function () {
	$('#slideshow').cycle({
		fx: 'fade',
		speed: 1500,
		duration: 7000,
		random: 1
	});
	
	$('#cycle').cycle({
		fx: 'scrollHorz',
		random: 1,
		timeout: 0, 
		prev: 'a#test-prev',
		next: 'a#test-next', 
		easing: 'easeInOutBack'
	});
	
	$('#test-controls a').click(function () {
		return false;
	});
	
	$('#flyout')
		.delay(3000)
		.fadeOut(500);
		
	$('a#masthead').hover(
		function() {
			$('#flyout').fadeIn(250);
		},
		function () {
			$('#flyout').fadeOut(250);
		}
	);
});
