jQuery(document).ready(function() {
jQuery(".coupon").qtip({
   content: 'E-Coupon Available',
   position: {
   corner: {
         target: 'rightTop',
         tooltip: 'bottomLeft'
      }
   },
  style: {
     name:'blue',
      tip: true,
      max:250,
      border: {
         width: 2,
         radius: 4,
        color: '#49A0D7'
      }
   },
 show: {
   effect: {
   type: 'fade'
   	}
   }
}).click(function(){
  window.open(this.href);
  return false;
});
}); 
