var clo = false;

$(document).ready(function(){
	$('.fbx').fancybox({centerOnScroll:false});
	$('.gmap').fancybox({centerOnScroll:false, frameWidth:700, frameHeight: 500});
});

function positionbl(){
	if(clo){
		return;
	}
	var block_width = 500;
	var block_height = 500;
	var wp = $('#fancy_overlay').show().css({'background':'rgb(102,102,102)','opacity':0.3});
	var elt = $('#redscheibe');
	if(!elt.length){
		$('#main').append('<div id="redscheibe"><a id="clbtn"></a></div>');
		elt = $('#redscheibe');
		$('#clbtn').click(function(){
			clo = true;
			$('#fancy_overlay').hide();
			$('#redscheibe').hide();
		});
	}
	var elt = $('#redscheibe');
	elt.css('left', (wp.width()-block_width)/2);
	elt.css('top', (wp.height()-block_height)/2);
}

