$(document).ready(function() {




// *** galeria
   // select the thumbnails and make them trigger our overlay 
   $(".gallery-photo a").overlay({ 
 
      // each trigger uses the same overlay with the id "gallery" 
      target: '#gallery', 
 
      // optional exposing effect 
      expose: '#111111' 
 
      // let the gallery plugin do its magic! 
   }).gallery({ 
 
      // the plugin accepts its own set of configuration options 
      speed: 800,
      next: '.nextArea',
      prev: '.prevArea',
      template: '<strong>${title}</strong>'
   });


}); // koniec


//$(document).ready(function() {
//  $("a.thumbnail").click(function(){
//     var image = $('#' + this.id + ' img').attr("src").replace(/thumbnail/, "product_page")
//      $("a#normal_image img").attr("src", image);
//      return false;
//  });
//});


