        $(function() {
            $('.images a.gal').lightBox({fixedNavigation:true});
            $('.news-left a.gal').lightBox({fixedNavigation:true});
        });

        $(document).ready(function(){

            //Apply CSS class to all A links that end in .pdf
            $("#dokumenty-produkt > a[href$=\'.pdf\']").addClass("PDF");
            $("#dokumenty-produkt > a[href$=\'.zip\']").addClass("ZIP");
            $("#dokumenty-produkt > a[href$=\'.rar\']").addClass("ZIP");

            //Apply CSS class to all A links that end in .doc
            $("#dokumenty-produkt > a[href$=\'.doc\']").addClass("DOC");

            //Apply CSS class to all A links that end in .doc
            $("#dokumenty-produkt > a[href$=\'.txt\']").addClass("DOC");

            //Apply CSS class to all A links that end in .xls
            $("#dokumenty-produkt > a[href$=\'.xls\']").addClass("XLS");

            //Apply CSS class to all A links that end in .ppt
            $("#dokumenty-produkt > a[href$=\'.ppt\']").addClass("PPT");

            //Apply CSS class to all A links that end in .jpg
            $("#dokumenty-produkt > a[href$=\'.jpg\']").addClass("Image");

            //Apply CSS class to all A links that end in .jpg
            $("#dokumenty-produkt > a[href$=\'.png\']").addClass("Image");

            //Apply CSS class to all A links that end in .gif
            $("#dokumenty-produkt > a[href$=\'.gif\']").addClass("Image");



        });
