$(document).ready(function() {
	$('div.cycle-wrapper').cycle({ 
	    fx:    'fade', 
	    timeout: 5000,
	    nowrap: 1
	});

	$("a.photo").fancybox();

	
	$('a.video').click(function() {
		$.fancybox({
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 480,
			'href'			: this.href.replace(new RegExp("([0-9])","i"),'moogaloop.swf?clip_id=$1'),
			'type'			: 'iframe'
		});
		return false;
	});
	
	$('div.faq').hide();
	
	$('a.faq-link').click(function() {
		$(this).hide();
		$('div.copy').hide();
		$('div.faq').show();
		$('html, body').animate({scrollTop:0}, 'fast');
		return false;
	});
	
	$('a.back').click(function() {
		$('a.faq-link').show();
		$('div.faq').hide();
		$('div.copy').show();
		$('html, body').animate({scrollTop:0}, 'fast');
		return false;
	});
	
});

$(function() {
		$( "#accordion" ).accordion({
			autoHeight: false,
			navigation: true
		});
	});
