  jQuery(document).ready(function(){
    jQuery.fn.wait = function(time, type) {
        time = time || 200;
        type = type || "fx";
        return this.queue(type, function() {
            var self = this;
            setTimeout(function() {
                jQuery(self).dequeue();
            }, time);
        });
    };
    function runIt() {
      jQuery("span.blink").wait()
              .animate({"opacity": 0.1},500)
              .wait()
              .animate({"opacity": 1},500,runIt);
    }
    runIt();
  });

