$(document).ready(function() {
	var homeroot = $("#slideshow_home").scrollable({ circular: true, mousewheel: false }).autoscroll({autoplay: false,interval: 5000,steps: 1}).navigator({
		navi: "#slideshow_home_nav",
		naviItem: 'a',
		activeClass: 'current',
		history: false
	})
	window.api = homeroot.data("scrollable");
	
	var tour_benefit_root = $("#benefits").scrollable().navigator({
		navi: "#benefits_nav",
		naviItem: 'li',
		activeClass: 'current',
		history: false
	})
	window.benefit = tour_benefit_root.data("scrollable");

	var tour_feature_root = $("#features").scrollable().navigator({
		navi: "#features_nav",
		naviItem: 'li',
		activeClass: 'current',
		history: false
	})
	window.features = tour_feature_root.data("scrollable");

	$('.benefits').click(function(){
		$(this).addClass('active');
		$(this).siblings().removeClass('active');
		$('#features_wrapper').fadeOut('fast');
		$('#benefits_wrapper').delay(200).fadeIn('fast');
		
	}); 
	$('.features').click(function(){
		$(this).addClass('active');
		$(this).siblings().removeClass('active');
		$('#benefits_wrapper').fadeOut('fast');
		$('#features_wrapper').delay(200).fadeIn('fast');
	}); 
})

