//Zamiana czcionek w menu top
$(document).ready(function()
{

    // execute your scripts when the DOM is ready. this is mostly a good habit

    $(document).ready(function()
    {

            // initialize scrollable
            $(".scrollable").scrollable();

    });



    $(".items img").click(function()
    {
     
       var url_large = $(this).attr("src").replace("thumb_medium/", "thumb_large/");
       var orginal = $(this).attr("src").replace("thumb_medium/", "");
      

       $("#display_photo ").attr("src", url_large);
       $("#zoom1 ").attr("href", orginal);
    });

});
