$j = $;

function openGewinnspiel(lid) {
	$j("body").append("<div id=\"gewinnspiel\" style=\"position: absolute; top: 58px; left: 50%; margin-left: -345px; display: none; width: 302px; height: 105px;\">" +
			"<iframe height=\"482\" width=\"689\" src=\"gewinnspiel.php?lid="+lid+"\" scrolling=\"no\" border=\"0\" frameborder=\"0\"/></div>");
	
	var show = function(hash) {
		hash.w.fadeIn("slow");
	}

	var hide = function(hash) {
		hash.w.fadeOut("slow");
		hash.o.fadeOut("slow",function(){
			$j("#gewinnspiel").remove();
		});
	};
	
	$j("#gewinnspiel").jqm({onShow: show, onHide: hide}).jqmShow();
	
	$j("#gewinnspiel").jqmShow();
}

function closeGewinnspiel() {
	$j("#gewinnspiel").jqmHide();
}
