﻿var cycleseconds = 4;
var homecyc;
var homecycling;

function homecycle() {
	var on = $('#top ul li.on');
	var next = (on.next().size() ? on.next() : on.siblings('li:first-child'));
	homecycling = true;
	homecyc = setTimeout("homecycle();",cycleseconds*1000);
	next.children('a').click();
}

$(function() {
	// Accordion
	$("#accordion").accordion({
		autoHeight: false,
		active: false, 
		alwaysOpen: false
	});
	
	// Tabs
	$("#tabs").tabs();
	
	$('#top ul li a').each(function(i) {
		$(this).click(function() {
			if(!homecycling) clearTimeout(homecyc);
			$(this).parent().addClass('on').siblings('.on').removeClass('on');
			$(this).parents('ul').siblings('img:eq('+i+')').fadeIn('fast').siblings('img:visible').fadeOut('fast');
			homecycling = false;
			return false;
		});
	});
	homecyc = setTimeout("homecycle();",cycleseconds*1000);
});