$(function() {
	$('#Background').cycle({ 
		timeout: 0, 
		speed: 600,
		startingSlide: 0,
		fx: 'scrollLeft'
	});
	$('a#Home').click(function() { 
		$('#Background').cycle(0); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Home').addClass('CurrentTab');
		return false; 
	});
	$('a#Benefits').click(function() { 
		$('#Background').cycle(1);
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Benefits').addClass('CurrentTab');
		return false; 
	});
	$('a#Testimonials').click(function() { 
		$('#Background').cycle(2); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Testimonials').addClass('CurrentTab');
		return false; 
	});
	$('a#Specs').click(function() { 
		$('#Background').cycle(3); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Specs').addClass('CurrentTab');
		return false; 
	});
	$('a#Easy').click(function() { 
		$('#Background').cycle(4); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Easy').addClass('CurrentTab');
		$('a#Benefits').addClass('CurrentTab');
		return false; 
	});
	$('a#Small').click(function() { 
		$('#Background').cycle(5); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Small').addClass('CurrentTab');
		$('a#Benefits').addClass('CurrentTab');
		return false; 
	});
	$('a#Accurate').click(function() { 
		$('#Background').cycle(6); 
		$('.CurrentTab').removeClass('CurrentTab');
		$('a#Accurate').addClass('CurrentTab');
		$('a#Benefits').addClass('CurrentTab');
		return false; 
	});
});
