// What is $(document).ready ? See: http://flowplayer.org/tools/using.html#document_ready
$(document).ready(function() {												 													 

$("div.tabs").tabs("#slidersContainer > 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();	
	
	$("div.tabsHomeArticles").tabs("#slidersContainerHomeArticles > div.slide", {

		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "slow"

	// use the slideshow plugin. It accepts its own configuration
	}).slideshow();


$("#topLinks a").dropShadow({left: -4, top: 0, blur: 1, color: "#000", opacity: 0.8});

});

