$(document).ready(function() {

$('#ab_more_info').live('click', function() {
  var url = $(this).attr('href');

  $.fancybox({
   'padding': 0,
   'autoScale': false,
   'transitionIn': 'none',
   'transitionOut': 'none',
   'title': this.title,
   'centerOnScroll': true,
   'width': 500,
   'height': 380,
   'href': url,
   'cache': false,
   onComplete: function() {

   },
   onCleanup: function() {

   }
  });
  return(false);
 });
});
