$(document).ready(function() {

    $('.teaser .col').click(function(e){
        if( $(this).find(".csc-textpic-text a").attr("target") == "_blank" ) {
            window.open("https://www.reisswolf.pt/" + $(this).find(".csc-textpic-text a").attr("href"));
        } else {
            window.location = "https://www.reisswolf.pt/" + $(this).find(".csc-textpic-text a").attr("href");
        }

        return false;
    });

});

$( window ).load(function() {

    var cookieText = 'This website uses cookies to ensure you get the best experience on our website.';
    var cookieMoreText = 'Learn more';

    // Cookie Meldung
    window.cookieconsent.initialise({
        "palette": {
            "popup": {
                "background": "rgba(255,255,255,0.9)",
                "text": "#404040"
            },
            "button": {
                "background": "#004494",
                "text": "#ffffff",
                // "border": "#ffffff"
            }
        },
        // "position": "top",
        "content": {
            "message": cookieText,
            "dismiss": "Ok",
            "link": cookieMoreText,
            "href": "contact/data-privacy/"
        }
    });

});