$(document).ready(function() {

	$(".slidetabs").tabs(".smallslide > div", {
 
	// 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({interval:7000});	
//	$(".slidetabs").data("slideshow").interval = 10000;
	$(".slidetabs").data("slideshow").play();
	$(".tabbed li[title]").tooltip({
 
			   // use the "slide" effect
			   effect: 'slide',
			   position: "bottom center",
			   tipClass: "tooltip bottom"
			 
			// add dynamic plugin with optional configuration for bottom edge
			});
	
});						 
