//<![CDATA[

// perform JavaScript after the document is scriptable.
$(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	$("ul.tabs").tabs("div.panes > .pane", {

			// enable "cross-fading" effect
			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, interval:5000, clickable:false, autopause:true});

	});


	
    //]]>
