jQuery.extend( jQuery.easing,
{
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	}
});


jQuery(document).ready(function($){

		$.scrollTo.defaults.axis = 'x';
		var whoislong = 0;
		var scrollspeed = 1200
		setTimeout("$('#whatwedo_content').scrollTo( 2160, 1);",1);
		setTimeout("$('#whatwedo_content').scrollTo( 200, 2400, { easing:'easeOutBack' });",1010);
		setTimeout("$('#wwd_information').animate({opacity:1}, 300);",1600);
		setTimeout("$('#wwd_branding').animate({opacity:0.5}, 600);",1400);
		setTimeout("$('#wwd_products').animate({opacity:0.5}, 600);",1400);
		$('#wwd_information').addClass('not_on');
		$('#wwd_branding').addClass('not_on');

		$("#wwd_information").click(function(){
				if( whoislong == 2){
					$('#whatwedo_content').scrollTo( 200, 1600, { easing:'easeOutBack' });
					$('#wwd_branding').animate({opacity:0.5}, 600);
				};
				if(whoislong == 1){
					$('#whatwedo_content').scrollTo( 200, 800, { easing:'easeOutBack' });
					$('#wwd_products').animate({opacity:0.5}, 600);
				};
				whoislong = 0;
				$('#wwd_information').animate({opacity:1}, 600);
				$('#wwd_products').addClass('not_on');
				$('#wwd_information').removeClass('not_on');
				$('#wwd_branding').addClass('not_on');
		});
		
		$("#wwd_products").click(function(){
				if( whoislong == 2){
					$('#whatwedo_content').scrollTo( 1180, 800, { easing:'easeOutBack' });
					$('#wwd_branding').animate({opacity:0.5}, 600);
				};
				if(whoislong == 0){
					$('#whatwedo_content').scrollTo( 1180, 800, { easing:'easeOutBack' });
					$('#wwd_information').animate({opacity:0.5}, 600);
				};
				whoislong = 1;
				$('#wwd_products').animate({opacity:1}, 600);
				$('#wwd_information').addClass('not_on');
				$('#wwd_branding').addClass('not_on');
				$('#wwd_products').removeClass('not_on');
		});
		
		$("#wwd_branding").click(function(){
				if( whoislong == 1){
					$('#whatwedo_content').scrollTo( 2160, 800, { easing:'easeOutBack' });
					$('#wwd_products').animate({opacity:0.5}, 600);
				};
				if(whoislong == 0){
					$('#whatwedo_content').scrollTo( 2160, 1600, { easing:'easeOutBack' });
					$('#wwd_information').animate({opacity:0.5}, 600);
				};
				whoislong = 2;
				$('#wwd_branding').animate({opacity:1}, 600);
				$('#wwd_branding').removeClass('not_on');
				$('#wwd_information').addClass('not_on');
				$('#wwd_products').addClass('not_on');
		});
		

		
});