
      // PLUGIN OPOZNIAJĄCY
      $.fn.delay = function( time, name ) {
      return this.queue( ( name || "fx" ), function() {
      var self = this;
      setTimeout(function() { $.dequeue(self); } , time );
      } );
      };

