function printPage()
{
    $('#standardMaske .button').hide();
    html = $('#standardMaske').html();
    $('#standardMaske .button').show();

    w=window.open();
    w.document.write('<html><head><link type="text/css" rel="stylesheet" href="../custom/css/gluecksspender.css"></head><body>');
    w.document.write(html);
    w.document.write('</body></html>');
    w.print();
    w.close();
}

$(document).ready(function() {
    if(document.cookie.search('gespendet=1') > -1)
        $('#ad img').attr('src', '../custom/bilder/vielen_dank.png');
});

