

function initSlideShow() {
	$(".slide-controller").tabs("#screen > div", {

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

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

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({
		interval: 10000,
		autoplay: true
	});
}

$(document).ready(function() {
	
	initSlideShow();
		
});
