jQuery(document).ready(function() {
	var clickCount = 0;
	jQuery('.slidetabdots').tabs('.slideimages > 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({next:'.next', prev:'.prev', clickable:false, autoplay:'true', interval:'4000', autopause:true});
	
	jQuery('.slidetabs').tabs('.slidetext > div', {
		// enable 'cross-fading' effect
		effect:'fade',
		fadeOutSpeed:'slow',

		// start from the beginning after the last tab
		rotate:true //,
		
		/*onBeforeClick: function(event, tabIndex) {
			jQuery('.slidetabdots').data('tabs').click(tabIndex);
			
			if (clickCount>0) {
			  jQuery('.slidetabdots').data('slideshow').stop();
			}
			clickCount++;
		}*/

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({clickable:false});
	
	jQuery('.slidetabdots a').each(
		function(index) {
			jQuery(this).text('');
		}
	);

});
