(function ($) {

/**
 * Front_Online_TochkaInfo
 * @constructor jQuery
 *
 */
$.widget('ui.Front_Online_TochkaInfo', $.extend({}, $.ui.Component.prototype, {
	type: 'Front_Online_TochkaInfo',
	_init: function () {
		$.ui.Component.prototype._init.call(this) // chain parent constructor

		if(!TochkaInfo.isNow){
			$('#count').countdown({
				until: new Date(TochkaInfo.date),
				layout:'{d<}<span>{dn}<font class="what-that">{dl}</font></span> {d>} '+'<span>{hn}<font class="what-that"> {hl}</font></span> <span>{mn}<font class="what-that"> {ml}</font></span> <span>{sn}<font class="what-that"> {sl}</font></span>',
				labels: TochkaInfo.label,
				labels1: TochkaInfo.label1
			});
		}

	}
}));

}).require('Component')(jQuery);
