/*================================================
-Home.js Document;
================================================*/
//----------------------------------------------- $(document).ready start
	$(document).ready(function(){
	
		// initialize scrollable together with the autoscroll plugin
//		var root = $("#scroller").scrollable({circular: true}).autoscroll({ autoplay: true, interval: 3000 });		
		// provide scrollable API for the action buttons
//		window.api = root.data("scrollable");
		
		
		
		
		$(".slidetabs").tabs(".items > .item-inside", {
		
			// enable "cross-fading" effect
			effect: 'fade',
			fadeOutSpeed: "slow",
			circular: true,
		
			// start from the beginning after the last tab
			rotate: true
		
		// use the slideshow plugin. It accepts its own configuration
		}).slideshow({ autoplay: true, interval: 3000 });


});



