$(document).ready(function(){
	var target = 10;
	var rotateInt = setInterval(function(){
		if (target != 0)
		{
			$("#timerText").text(target+' seconds...');
		}
		else {
			document.location.href = 'http://www.source.ca';
		}
		target--;
	},1000);
});
