document.observe('dom:loaded',
  function() {
   ['.textblock_item', '.entre_item', '.event_item', '.gallery_item', '.special_item'].each(function(item_type_class) {
      $$(item_type_class + ' .image_data_map span[data-largeimageurl]').each(function(idm) {
        new BiggableImage(idm);
      }); 
    });
    if (window.myLightbox) {
      myLightbox.updateImageList();
    }    
  }
);