/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){
  $('#home_btn').click(function(){
    urlPrzekierowania='/';
    document.location = urlPrzekierowania;
  })

  $('.produkt_rekord').click(function(){
    $(this).find('.zawijany').toggle('slow');
  })
})

