$(document).ready(function(){

//toolTip('.instantPlay a');
 
});

function toolTip(selector){
  
  $(selector).hover(function(e){					 
   $(this).append('<div class="toolTipWrap"><div class="toolTip"></div></div>');
   var tbody = $(this).attr('rel');
   $('.toolTip').text(tbody);
   $('.toolTipWrap').show();
   $('.toolTip').animate({top:"-=110"},1500);
  },
  function(){
   $('.toolTipWrap').remove();
  }
  );
 
}

