$(document).ready(function() {

   
 /* $('#loyalty_grid .logo .loyalty_note').each(function()
  {
    $(this).hide();
  });
   
   $('#loyalty_grid .logo').each(function() 
   {
    var image = this.src;
  
  
  $(this).mouseover(function(){
  //$(this).append("<div id='active'>This</div>");
  $(this).find('.loyalty_note').show();
     //alert (image);
   
   });
   $(this).mouseout(function(){
  //$('#active').remove();
  $(this).find('.loyalty_note').hide();
     //alert (image);
   
   });
  
  
  
   });*/
    
   $(".logo").ezpz_tooltip({

  stayOnContent: true,
  offset: 10
   });
   

});