$(function() {

$(".tip").each(function()
  {   
    var content = $('#' + $(this).attr("rel")).html();

    $(this).parent().qtip({
      content: content,
      style: {
        padding: 12,
        background: '#000',
        color: '#fff',
        border: { width: 2, radius: 5, color: '#6699cc' },
        tip: 'bottomMiddle'
      },
      show: { deplay: 0, effect: { length: 0 } },
      hide: "mouseout",
      position: {
        corner: {
           target: 'topMiddle',
           tooltip: 'bottomMiddle'
        },
        adjust: { y: 0, x: 0 }
      }
    }); //qtip
  }); //each

});