  $(function() {
    $('.biotip').attr('id', function (arr) {
      return "biotip-id-" + arr;
    });
    $('.biotip').each(function() {
       $('#'+this.id).wTooltip({ follow: false, fadeIn:0, fadeOut:0, offsetY: 0, offsetX: 0, ajax: '/ajax/bio/' + $(this).attr('rel') }).click(function() { return false;  });
    });
  });