

jQuery(document).ready(function(){
$(".slidetabs").tabs(".images > div", {

	// enable "cross-fading" effect
	effect: 'fade',
	fadeOutSpeed: "slow",
	current: 	'current',
	
	// start from the beginning after the last tab
	rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({	
		
          'autoplay' : true,
          'interval' : 7000
  });
  
  
$(".eventtabs").tabs(".list-events > div", {
	fadeOutSpeed: "slow",
	current: 	'current',
	rotate: true
}); 

});
