$(document).ready(function(){
	
	$(".slideshow-tabs").tabs("> div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeInSpeed: 1000,
		fadeOutSpeed: 0,

		// start from the beginning after the last tab
		rotate: true

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({
	
		autoplay: true,
		autopause: false,
		interval: 7000,
		clickable: false
	
	});
	
	
	$(".portfolio-tabs").tabs(".portfolio div", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeInSpeed: 1000,
		fadeOutSpeed: 1000,

		// start from the beginning after the last tab
		rotate: true,
		tabs: 'li'

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({
	
		autoplay: true,
		autopause: false,
		interval: 5000,
		clickable: false
	
	});
	
	
	$(".oneday-tabs").tabs(".oneday div.slide", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeInSpeed: 1000,
		fadeOutSpeed: 1000,

		// start from the beginning after the last tab
		rotate: true

	});
	
});
