$(document).ready(function() {
	$('body').prepend('<div id="overlay"><div id="overlay-content"><a href="/" id="close">Schließen</a><!--[if IE]><iframe src="impressum.html" frameborder="0"><p>Leider unterstützt Ihr Browser keine iFrames.<br />Um diesen Inhalt trozdem zu sehen gehen Sie bitte auf <a href="/impressum.htm">impressum.html</a>.</p></iframe><![endif]--><!--[if ! IE]><--><object type="text/html" data="impressum.html"><p>Leider unterstützt Ihr Browser keine iFrames.<br />Um diesen Inhalt trozdem zu sehen gehen Sie bitte auf <a href="/impressum.htm">impressum.html</a>.</p></object><!--><![endif]--></div></div>');
	//$('body').prepend('<div id="overlay"><div id="overlay-content"><a href="/" id="close">Schließen</a><!--[if IE]><iframe src="impressum.html" frameborder="0"><p>Leider unterstützt Ihr Browser keine iFrames.<br />Um diesen Inhalt trozdem zu sehen gehen Sie bitte auf <a href="/impressum.htm">impressum.html</a>.</p></iframe><![endif]--><!--[if !IE]><--><object type="text/html" data="impressum.html"><p>Leider unterstützt Ihr Browser keine iFrames.<br />Um diesen Inhalt trozdem zu sehen gehen Sie bitte auf <a href="/impressum.htm">impressum.html</a>.</p></object><!--><![endif]--></div></div>');
		
	$('#imprint').click(function() {
		$('#overlay').fadeIn('fast');
		
		return false;
	});
	
	$('#overlay').click(function() {
		$('#overlay').fadeOut('fast');
	});
	
	$('#close').click(function() {
		$('#overlay').fadeOut('fast');
		
		return false;
	});
});