// perform JavaScript after the document is scriptable.
jQuery(function() {
	// setup ul.tabs to work as tabs for each div directly under div.panes
	jQuery(".slidetabs").tabs(".slideimages > div", {
		// enable "cross-fading" effect
		effect: 'fade',
		fadeInSpeed: "slow",
		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: 6500,
	});
});
