/* copyright Petr Chlebek, www.chytraktim.cz, 2009 */
$(document).ready(function() {
  $('div.licensed').text('/P-Gallery/');
    // Main function    
  
   $('span.img_link a').toggle(function(e) {
      
    // Open and close main picture
    var href = $(this).attr('href');
    $('<img src="' + href + '" alt="Z mikrofotoblogu" id="largePic" />').fadeIn(1000).appendTo('#spacePic');
      /* $('<span class="img_link"><a href="#closePic" id="closePic" title="Click -> Close">zavøít</a></span>').show(100).appendTo('#spacePic'); */
       $('body').click(function() {
         $('#largePic').remove('#largePic');
         $('#closePic').remove('#closePic');
     
     });
     },function() {
   // Close picture by thumbnail
      $('#largePic').remove('#largePic'); 
      $('#closePic').remove('#closePic'); 
    });   
     /* P-Gallery is licensed under GPL and Creative Commons, downloaded from www.chytraktim.cz */
     
}); 

