$(document).ready(function() {	
													 
	$("#accordion").tabs("#accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});
	$("#topLinks a").dropShadow({left: -4, top: 0, blur: 1, color: "#000", opacity: 0.8});			
	
	$("div.tabs").tabs("#sidebarSlidersContainer > div.slide", {
		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "fast",
		// start from the beginning after the last tab
		rotate: true
	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();
	$("div.tabs").tabs().play();	
	
});

