$(document).ready(function(){

	// Tabs
	var tabContainers = $('#tabs div');
	$('#tabs #tab-nav a').click(function () {
		tabContainers.hide().filter(this.hash).show();
		$('#tabs #tab-nav a').removeClass('active');
		$(this).addClass('active');
		return false;
	}).filter(':first').click();	

        // Slideshow
	$('.slideshow').cycle({
	    fx:     'fade',
	    speed:  '1000',
	    timeout: 2000,
	    containerResize: false 
	});

        // Gallery slideshow
        $('#images').cycle({
            fx:      'scrollRight',
            next:    '#next',
            timeout: 0,
            easing:  'backinout'
	});

	// Collapsible content
	$(".toggle_container").hide();
	$("h5.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});
	$("h5.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});

	// Shadowbox
	Shadowbox.init();

});
