﻿/* http://keith-wood.name/countdown.html
   French initialisation for the jQuery countdown extension
   Written by Keith Wood (kbwood{at}iinet.com.au) Jan 2008. */
(function($) {
	$.countdown.regional['en'] = {
		labels: ['Y', 'M', 'W', 'Days', 'Hrs', 'Min', 'Sec'],
		labels1: ['Y', 'M', 'W', 'Day', 'Hr', 'Min', 'Sec'],
		compactLabels: ['Y', 'M', 'W', ' days'],
		whichLabels: null,
		timeSeparator: ':', isRTL: false};
    $.countdown.setDefaults($.countdown.regional['en']);
})(jQuery);

