$(document).ready(function() {

	// header slideshows
	if ($('#intro div.span-9')) {
		$('#intro div.span-9').cycle({
			delay:		-3000,
			timeout:	3000,
			speed:		3000
		});
	}
	
	$(".section").hide(); // hide all sections initially
	$(".section:first").fadeIn("slow"); // fade in first section
	$(".section-tabs a:first").addClass('active'); // highlight current section tab
	
	$('.section-tabs a').click(function () { // tab section switch
		// Switch class="current" for tabs
		$('.section-tabs a').removeClass('active');
		$(this).addClass('active');
		
		// Assign value of the link target
		var thisTarget = $(this).attr('href');  
		
		// Show target tbody and hide others
		$('.section').hide(); //.removeClass('selected');
		$(thisTarget).fadeIn('slow'); //addClass('selected');
		this.blur();
		return false;
	});	
	
});