
$(document).ready(function(){
  $('a.tdelivery_date', 'div.main').each(function (index, value) {
    var $this = $(this);
    $this.tooltip({
      effect: 'slide',
      position: 'top center',
      tip: '#' + $this.attr('rel'),
      offset : [0, 0]
    });
  });
});

