$(document).ready(function() {

		$("#tab-one").toggle(function(){
			$("#tab-container").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-two").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-three").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-content").empty().html('<img src="assets/imgs/loading.gif" />');
			$("#tab-content").load("wet-look.html");
			},
			function(){
			$("#tab-container").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-two").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-three").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-content").html("");
			}
		);

		$("#tab-two").toggle(function(){
			$("#tab-container").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-two").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-three").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-content").empty().html('<img src="assets/imgs/loading.gif" />');
			$("#tab-content").load("tab-two.html");
			},
			function(){
			$("#tab-container").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-two").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-three").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-content").html("");
			}
		);

		$("#tab-three").toggle(function(){
			$("#tab-container").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-three").animate({marginLeft: "-=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-two").animate({marginLeft: "+=30px"}, "slow" );
			$("#tab-content").empty().html('<img src="assets/imgs/loading.gif" />');
			$("#tab-content").load("tab-three.html");
			},
			function(){
			$("#tab-container").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-three").animate({marginLeft: "+=900px"}, "slow" );
			$("#tab-one").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-two").animate({marginLeft: "-=30px"}, "slow" );
			$("#tab-content").html("");
			}
		);
			
		$('#weather').weatherfeed(['LEXX0003']);
		//$('#tab-container').animate({opacity: 0.95});

});
