// 0 = nothing
// 
var GLOBAL_CONTAINER = new Object();

// Here we start
$(document).ready(function(){
  $("#page_header a").mouseenter(
      function () {
        $(this).find("span").stop().animate({
          opacity: 0
        }, 500);
      }
  ).mouseleave(
    function () {
      $(this).find("span").stop().animate({
        opacity: 1
      },500);
    }
  );
  
  $("#gallery a[rel='gallery']").colorbox({
    current: "Obrázok {current} z {total}"
  });
  
});
