

$(document).ready(function() {
	
    $('#carousel ul').jcarousel({
		auto: 		10,
    	wrap: 		'circular',
		scroll: 	1
    });

   

	$('.intro_page ul').cycle({ 
	    fx:     	'fade', 
    	speed:   	800, 
    	timeout: 	4000, 
	    next:   	'#next', 
	    prev:   	'#prev' 
	});
		
});


// HOME
$(function () {
	
	var tabContainers = $('.writing_learning .tabbed .panes > div.pane');
	tabContainers.hide().filter(':first').show();

	$('.writing_learning .tabbed ul.tabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('.writing_learning .tabbed ul.tabs li a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();			
	
});


// SHOW
$(function () {
	
	var tabContainers = $('.show .tabbed .panes > div.pane');
	tabContainers.hide().filter(':first').show();

	$('.show .tabbed ul.tabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('.show .tabbed ul.tabs li a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();
	
});


// EVENT GALLERY
$(function () {
	
	var tabContainers = $('.event_gallery .tabbed .panes > div.pane');
	tabContainers.hide().filter(':first').show();

	$('.event_gallery .tabbed ul.tabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('.event_gallery .tabbed ul.tabs li a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();
	
});



// SIDE GALLERY
$(function () {
	
	var tabContainers = $('.side_gallery .tabbed .panes > div.pane');
	tabContainers.hide().filter(':first').show();

	$('.side_gallery .tabbed ul.tabs a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('.side_gallery .tabbed ul.tabs li a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();
	
});




