  $(document).ready(function(){

    $("#game").css({'display':'none'});
    $("#text").html("<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><b>Dieses Spiel ist vorrübergehend nicht erreichbar.</b><br><br><br><a href='http://www.ichwillspielen.com' target='_self' id='weiss'>zurück zu www.IchwillSpielen.com</a>").fadeIn("slow");

    $("#button").click(function () {
      $("#text").fadeOut("slow",function () {
                                             $("#game").show();
                                             });
    });

  });