(function()
	{
		$(document).ready(function()
		{
			var count = 60;
			var timer = setInterval(function()
			{
				if (count === 1)
				{
					clearInterval(timer);
				}
				count--;
				
				$('#countdown_timer').text(count);
				
			}, 1000);
		});
	})();
