// JavaScript Document
//uncomment lines below to reinstate animation.
//$(document).ready(function(){
	//$('#focal').attr('src', 'images/focal-home-think-1.jpg')
	//$('#focalMessage').css('left', '-450px')
	//$('#focalButton').css('top', '300px')
//});
//window.onload = wait;
function wait(){
	setTimeout("smash()", 1000);
}
function smash(){
	$('#focal').attr('src', 'images/focal-home-think-2.jpg')
	setTimeout("smashMore()", 55);
}
function smashMore(){
	$('#focal').attr('src', 'images/focal-home-think-3.jpg')
	setTimeout("textSlide()", 1250);
}
function textSlide(){
	$('#focalMessage').animate(
		{
			left: '54px',
		},
		750,
		function(){
			waitSomeMore();
		}
	);
}
function waitSomeMore(){
	setTimeout("buttonSlide()", 500);
}
function buttonSlide(){
	$('#focalButton').animate(
		{
			top: '225px',
		},
		750
	);
}
