
/*
Powerful Errors Template - Javascript file
Requires: jQuery 1.3+
          jQuery UI Core 
		  jQuery UI Effects Core
*/

/*** OPTIONS ***/
									   
var date = {
	'year':		'2010',    // year
	'month':	'3',	   // month - use 1 to 12
	'date':		'24',      // date 1 to 31
	'hour':		'0',	   // hour - 0 to 23
	'minute':	'0',	   // minute - 0 to 59
	'second':	'0'	   // second - 0 to 59
}

var date_format = 'owDHMS';		// 'O' for months, 'W' for weeks, 'D' for days, 'H' for hours, 'M' for minutes, 'S' for seconds.
 								//  use lower case versions for "Optional" - i.e. the count will only show if it's greater than 0

/*** END OPTIONS ***/

$(function () {
	var austDay = new Date();
	austDay = new Date(date.year, date.month-1, date.date, date.hour, date.minute, date.second);
	$('#countdown').countdown({until: austDay, expiryText: 'NOW!', format: date_format});
});