﻿/* http://keith-wood.name/countdown.html
 * Hungarian initialisation for the jQuery countdown extension
 * Written by Edmond L. (webmond@gmail.com). */
$(document).ready(function() {
	$.countdown.regional['hu'] = {
		labels: ['év', 'hónap', 'hét', 'nap', 'óra', 'perc', 'mp'],
		labelsSingle: ['év', 'hónap', 'hét', 'nap', 'óra', 'perc', 'mp'],
		compactLabels: ['É', 'H', 'Hé', 'N'], compactLabelsSingle: ['É', 'H', 'Hé', 'N'],
		timeSeparator: ':'};
	$.countdown.setDefaults($.countdown.regional['hu']);
});

