// JavaScript Document
$(function() { 
 	$("#accordion").tabs("#accordion div.pane", {tabs: 'h3', effect: 'slide', initialIndex: 0});
});

$(function() { 
	$(".interactTabs").tabs(".interactSections > .pane", {tabs: '.tab', effect: 'fade',fadeSpeed: "slow", initialIndex: 0 });
});


$(function() {
 
$(".slidetabs").tabs(".slides > 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({autoplay: true, interval: 6000}); 
});


