function MmacBannerManager ()
{
  $('.banner').each(function () {
    var divId = this.getAttribute('id');
    if (divId)
    {
      var bannerId = divId.substr(7);
      $(this).load('/script/mmac-banner.php', {zone: bannerId}, function () {
        if (this.innerHTML == '')
        {
          $(this).hide();
        }
      });
/*      $(this).css({visibility: 'hidden'}).load('/script/mmac-banner.php', {zone: bannerId}, function () {
        if (this.innerHTML == '')
        {
          $(this).hide();
        }
        else
        {
          $(this).css({visibility: 'visible'}).hide().fadeIn(200);
        }
      }); */
    }
  });
}
$(document).ready(function(){
   new MmacBannerManager();
});

