	
	$(document).ready(
		function()
		{
			$(".slidetabs")
				.tabs(".images > div", 
				{
					// enable "cross-fading" effect
					effect: 'fade',
					//fadeOutSpeed: 'slow',
					fadeInSpeed: 2000,
		            fadeOutSpeed:2000,

				
					// start from the beginning after the last tab
					rotate: true,
					
					autoplay: true,
					autopause: false
			
				})
				.slideshow({autoplay: true, autopause: false, interval: 5000});	// use the slideshow plugin. It accepts its own configuration
		}
	);


