$(document).ready(function() {
	/*if (location.href=='http://www.tantefanny.at/ostergewinnspiel'){
		openGewinnspiel();
	}
	if (location.href=='http://www.tantefanny.at/ostergewinnspiel/'){
		openGewinnspiel();
	}
	if (location.href == 'http://www.tantefanny.at/') {
		openGewinnspiel();
	}
	if(location.href=='http://www.tantefanny.at/home/'){
		openGewinnspiel();
	}
	
	if(location.href=='http://p123072.mittwaldserver.info/'){
		openGewinnspiel();		
	}


	if(location.href=='http://p123072.mittwaldserver.info/home/'){
		openGewinnspiel();		
	}

	if(location.href=='http://www.tantefanny.at/home/'){
		openGewinnspiel();		
	}*/

	$('.gewinnspiel-close').click(function(){
		$('.gewinnspiel').remove();
		$('.gewinnspiel-close').fadeOut('slow',function(){
			$('.gewinnspiel-close').remove();
		});	
		$('.gewinnspiel-bg').fadeOut('slow',function(){
			$('.gewinnspiel-bg').remove();
		});
	});
			
});

function openGewinnspiel(){
	$('body').append(
		'<div class="gewinnspiel-bg">'+
		'</div>'+
		'<div class="gewinnspiel-close">'+
		'</div>'+
		'<iframe class="gewinnspiel" scrolling="no" height="696" width="897" frameborder="no" allowtransparency="on" src="/?type=9876"></iframe>'
	);
	$('.gewinnspiel-bg').fadeTo('slow',0.7);
	$('.gewinnspiel-close').fadeIn();
	$('.gewinnspiel').fadeIn();
}


