/* http://keith-wood.name/countdown.html
 * Croatian Latin initialisation for the jQuery countdown extension
 * Written by Dejan Broz info@hqfactory.com (2011) */
(function($) {
	$.countdown.regional['hr'] = {
		labels: ['godina', 'mjeseci', 'tjedana', 'dana', 'sati', 'minuta', 'sekundi'],
		labels1: ['godina', 'mjesec', 'tjedan', 'dan', 'sat', 'minuta', 'sekunda'],
		labels2: ['godine', 'mjeseca', 'tjedna', 'dana', 'sata', 'minute', 'sekunde'],
		compactLabels: ['g', 'm', 't', 'd'],
		whichLabels: function(amount) {
			return (amount == 1 ? 1 : (amount >= 2 && amount <= 4 ? 2 : 0));
		},
		timeSeparator: ':', isRTL: false};
	$.countdown.setDefaults($.countdown.regional['hr']);
})(jQuery);

