$(document).ready(function(){
	$(".teaser").find("a").each(function(){
		if($(this).attr("href") == 'http://www.haubis.at/index.php?id=1' || $(this).attr("href") == 'index.php?id=1')
		{
			$(this).click(function(e){
				e.preventDefault();
				$(document).scrollTop(0);
				$("body").append('<div id="darker" style="position:absolute; top:0px; left:0px; width:100%; background-color:#000;z-index:4000; display:none;"></div>');
				$("#darker").css('opacity',0.6).fadeIn("slow");
				setFullHeight($("#darker"));
				$("body").append('<a href="#" id="popup-closer" style="position:absolute; top:50%; left:50%; margin-left:320px; margin-top:-285px; z-index:4050;"><img src="uploads/tf/haubis-close-button.png" border="0" alt="Schließen" /></a>');
				$("body").append('<div id="popup-iframe" style="position:absolute; top:50%; left:50%; margin-left:-338px; margin-top:-269px; z-index:4030; width:666px; height:536px; background-color:#00502c;"></div>');
				$("#popup-iframe").append('<iframe frameborder="0" border="0" style="border:none; width:666px; height:536px;" src="http://haubis.martrix.vss.kapper.net/gewinnspiel5/"></iframe>');
				$("#popup-closer").click(function(e){
					e.preventDefault();
					$("#popup-iframe").remove();
					$(this).remove();
					$("#darker").fadeOut("slow",function(){
						$(this).remove();
					});
				});
			});
		}
	});

});