function simplePopup(message) {
  $.prompt(message, {
    top : '30%'
  });
}

jQuery(document).ready(
    function() {      
//      $('#main_page .main_page_info li').tooltip({
//        track: true,
//
//        bodyHandler: function(e) {
//        var objects =  $(this).children('.hidden');
//        return $(objects[0]).html();
//      }
//   });
      
      $('.image_link').lightBox( {
        fixedNavigation : true,
        txtImage : 'Zdjęcie',
        txtOf : 'z',
        overlayOpacity : 0.3,
        containerResizeSpeed : 750
      });
})