$(document).ready(function() {
  
  // przycisk powrotu
  $('a.back').bind('click', function(){
  history.back();
  return false;
  });
  
  // wywolanie drukowania
  $('a.print').bind('click', function(){
  window.print();
  return false;
  });
    
   $('#slideshow').cycle({
       prev:   '#prev',
       next:   '#next',
       delay: 100,
       speed: 500,
       before: onBefore
   });
    
   function onBefore() {
       $('h3#slideshow_title').html(this.alt);
   }
    
});
