Galleria.loadTheme('js_scripts/classic/galleria.classic.js');
$(function(){

  $('div.zm_gallery').galleria();
  $('div.galleria-stage div.galleria-image img').live('click', function(){
    var src = $(this).attr('src');
    //window.open('image_detail.php?image='+src,'','width=200,height=200');
    //window.open('image_detail.php?image='+src,'');
    h = $(this).height() + 300;
    w = $(this).width() + 400;
    window.open('image_detail.php?image='+src,'','width='+w+',height='+h);
  }); 
  $('div.galleria-stage div.galleria-image img').live('mouseover', function(){
    $(this).attr('title', 'Zväčšiť v novom okne');
  });  
});
