$(function(){
		   
//Shadowbox.setup('#initShadowbox');

$('body').prepend('<div id="overlay"><div style="position: fixed; height: 625px; width: 475px; left: 61%; top: 43px; z-index: 999; overflow: visible; margin-left: -200px;" id="pressebericht"><a href="#" style="outline: none;"><img alt="BOGE und graef advertising im Westfalen Blatt, 24.06.2010" src="fileadmin/user_upload/bilder/layer_boge_westfalen-blatt.png"></a></div></div>');
$('#overlay').css({
	'background-image' : 'url("http://www.graef-advertising.com/fileadmin/tpl/images/trans_bg.png")',
	'position' : 'absolute',
	'left' : '0px',
	'top' : '0px',
	'z-index' : '200'
});

$('#overlay').width($(window).width() + 'px');
$('#overlay').height($(window).height() + 'px');
$('body').click(function() {
	$('#overlay').fadeOut(800);						 
});

});