/*  SOUNDEARTH STRATEGIES
    Redirect JS
*/

$(document).ready(function(){

	$("#redirect p.canceled").hide();
	$("#countdown").show();
	
	var timeleft = '9';
	
	var timer = setTimeout(function(){					// After 10 secs, update display
		$("#timeleft").text('20');

		timer = setTimeout(function(){					// After 15 secs, update again
			$("#timeleft").text('15');

			timer = setTimeout(function(){				// After 20 secs, update again
				$("#timeleft").text('10');

				timer = setInterval(function(){			// Start counting down
					
					if (timeleft == 0) {
						location.href = 'http://www.soundearthinc.com/';
					} else {
						$("#timeleft").text(timeleft);
						timeleft--;
					}

				},1000);

			},5000);

		},5000);

	},10000);
	
	$("#canceltimer").click(function(){

		clearTimeout(timer);

		$("#countdown").hide();
		$("#redirect p.canceled").show();

		return false;
	})
	
})




			

