 $(document).ready(function(){
 	$(".spiel").click(function () {
		$("#quiz-background").remove();
		$("#quiz-content").remove();
		$("#quiz-close").remove();
		
		$("body").append('<div id="quiz-background"></div>');
		$("body").append('<div id="quiz-content"><iframe src="quiz.php?delete=answers" frameborder="0"></iframe></div>');
		$("body").append('<div id="quiz-close">Quiz beenden</div>');
		
		if($.browser.msie == true && $.browser.version < 7) {
			$("#quiz-background").height($("#wrapper_out").height());						
		}
		
		else {
			$("#quiz-background").height($(window).height());
		}
		
		$("#quiz-background").css("opacity", 0);
		$("#quiz-background").fadeTo(800, 0.75);
		
		$("#quiz-content").css("opacity", 0);
		$("#quiz-content").fadeTo(800, 1);
		
		$("#quiz-close").css("opacity", 0);
		$("#quiz-close").fadeTo(1000, 1);

		$("#quiz-background").click(function () {
			$(this).fadeOut("fast");
			$("#quiz-content").fadeOut("fast");
			$("#quiz-close").fadeOut("fast");
		});
		
		$("#quiz-close").click(function () {
			$(this).fadeOut("fast");
			$("#quiz-content").fadeOut("fast");
			$("#quiz-background").fadeOut("fast");
		});
    });
 });
