	$(document).ready(function()
		{
//			$("#startClaim").fadeOut(0);
			$("#harderClaim").fadeOut(0);
			$("#betterClaim").fadeOut(0);
			$("#fasterClaim").fadeOut(0);
			$("#strongerClaim").fadeOut(0);
			$("#contactClaim").fadeOut(0);
			$("#liftoffClaim").fadeOut(0);


			$(".scrollpage").bind('click',function(event)
				{
					var $anchor = $(this);
					elementClicked = $(this).attr("href");

					$('html, body').stop().animate(
						{

							scrollLeft: $($anchor.attr('href')).offset().left
						}, 1600,'easeInOutExpo', claimFadeIn);

					$("#claimBox img").delay(300).fadeOut(800, function()
						{
//							$("#claimBox img"+elementClicked+"Claim").delay(5).fadeIn(800);
						});


					event.preventDefault();
				});


				function claimFadeIn()
					{
						$("#claimBox img"+elementClicked+"Claim").fadeIn(2000);
					}









		});