
// SLIDESHOW
$(document).ready(function() {
	$("div#tabs").tabs("#slides > div.slide", {
		// enable "cross-fading" effect
		/*event: 'mouseover',*/
		effect: 'fade',
		fadeOutSpeed: "slow",
		// start from the beginning after the last tab
		rotate: true
	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({autoplay: true, clickable: false, interval: 5000});
});

