var SwiftCountdown = {
	start:function(){
		var swiftlaunchdate = new Date(2009,11-1,29,14,0,0);
			$('#Countdown').countdown({
				until: swiftlaunchdate,
				labels: ['', '', '', '', '', '', ''],
				labels1:  ['', '', '', '', '', '', '']
			});
			$("#SwiftCountdown").show();
	},

	SwiftClick:function(){
		$("#SwiftCountdown").click(function(){
		  window.location.href='/Projects/Swift.cfm';
		  return false;
		});
	}


}



$(SwiftCountdown.start);
$(SwiftCountdown.SwiftClick);
