/* Enable slideshow on the homepage */
	$(document).ready(function() {
		$("ul.tabs").tabs("ul.panes > li", {  
				// enable "cross-fading" effect   
    		effect: 'fade',
			fadeInSpeed: "1500",
			fadeOutSpeed: "1100",
    		  
				// start from the beginning after the last tab   
    		rotate: true
				// use the slideshow plugin. It accepts its own configuration   
			}).slideshow({
				autoplay: true,
				autopause: true,
				clickable: false,
				interval: 10000
			});
		});

