;(function($) {

	$.widget('dealp.dealpoffer', {
		options:{
		},
		
		_init:function(){
			this._bind();
		},
		
		_bind:function(){
			$(this.element).dealptimer();
			return this;
		},
		
		refresh_timer:function(){
			$(this.element).dealptimer('step');
			return this;
		}
		
	});

})(jQuery);


