    $('document').ready(function(){  
                $("a.m").click(function () { 
                     $("#body").css( "font-size", "75%" ); 
                    });
 $("a.xl").click(function () { 
                     $("#body").css( "font-size", "100%" ); 
                    });
 $("a.xxl").click(function () { 
                     $("#body").css( "font-size", "116%" ); 
                    });


/* E-Mails umwandeln: <a href="mailto:box [at-no-spam] server.tld">title</a> */

    $('a[@href^=mailto]').each(function(){
        var to_replace = '=at-no-spam=';
        var link       = $(this).attr('href').replace(to_replace, '@');
        var address    = $(this).html().replace(to_replace, '@');

        $(this).html(address);
        $(this).attr('href', link);
    });
            });
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}