(function($) {

	// http://james.padolsey.com/javascript/jquery-delay-plugin/
	$.fn.delay = function(time, callback)
	{
		// Empty function:
		$.fx.step.delay = function(){};
		// Return meaningless animation, (will be added to queue)
		return this.animate({delay:1}, time, callback);
	}

})(jQuery);
