
(function($) {
	
	
	jQuery.fn.timerange = function() {
    	
		this.each(function(){
			var $this = $(this);
			//alert($this);
			//this.style.background = "blue";

			$this.resizable({ handles: 'n,s' });
			
			
			$this.append('<a href="#"></a>').addClass("ui-slider-handle");
			
			return $this;
			});

	    	
	    	
	    	
	        }
    
	
	
	
})(jQuery);


