/*-----------------------------------------

 copyright 2020 by mmc:agentur

 Version: 1.0

 Author: David Rerych

 Author URI: http://www.mmc-agentur.at

 -------------------------------------------*/



$(document).ready(function(){

    $('input[type="text"]').mmcFormDefaults();
    // for browsers that don't support placeholder text
    $('[data-swf]').swfElement();

    $('.csc-sitemap ul').jQuerySitemap('open', 'vertical');

    // lightbox
    (function($){
        $(function(){
            $(".lightbox").lightbox({
                navbarOnTop: 0,
                resizeSpeed: 300,
                overlayOpacity: 0.4,
                strings: {
                    prevLinkTitle: "vorheriges Bild",
                    nextLinkTitle: "nächstes Bild",
                    prevLinkText: "",
                    nextLinkText: "",
                    closeTitle: "schließen",
                    image: "Bild",
                    of: "von"
                }
            });
        });
    })(jQuery);
});


