var disabled;
var data = new Date();
var frontend_url = "http://www.grant.pl";
var clicked = false;


$(document).ready(function() {


    $("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed: "fast", padding: 35, opacity: 0.35, showTitle: true, allowresize: true, counter_separator_label: "/", theme: "light_square"});

    $(".change-produkt-photo").live("click", function()
    {
        $(".change-produkt-photo").css("font-weight","normal");
        var id_teren = $(this).attr("rel");
         $(".produkty-photo").hide();
        $(".produkt-photo-"+id_teren).show();
        $(this).css("font-weight","bold");
        return false;
    });


});

