﻿$(function() {
	var tabContainers = $('div.tabs div.tab-container div');
	tabContainers.hide().filter(':first').show();

	$('div.tabs ul.tabs-nav a').click(function() {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.tabs ul.tabs-nav a').removeClass('current');
		$(this).addClass('current');
		return false;
	}).filter(':first').click();

	$('#cycle-1').cycle('fade');
	$('#cycle-2').cycle('fade');
	$('#cycle-3').cycle('fade');
	$('#cycle-4').cycle('fade');
	$('#header').cycle({
		fx: 'scrollLeft',
		speed: 500,
		timeout: 5000
	});

	$('ul.nav').superfish({
		autoArrows: false,
		dropShadows: false
	});
});