$(document).ready(function(){

    $("#photos a").lightBox({
        fixedNavigation: true,
        txtImage: 'Zdjęcie',
        txtOf: 'z'
    });

    if ($("#order").length > 0)
    {
        if (window.location.hash != "#order")
        {
            $("#order").hide();
        }
        else
        {
            $("#comments-box").hide();
        }

        $("p.order").click(function() {
            $("#order").show();
            $("#comments-box").hide();
            window.location.hash = '#order';
            return false;
        });

        $("#order-cancel").click(function() {
            $("#order").hide();
            $("#comments-box").show();
            window.location.hash = '';
            return false;
        });
    }

    $("#footer-nav li:last-child").addClass("last");

});

