jQuery.fn.center = function () {
    this.css("position","absolute");
    this.css("top", ( $(window).height() - this.height() ) / 2+$(window).scrollTop() + "px");
    this.css("left", ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + "px");
    return this;
	}

$().ready(function() {
	
	$('div.logo').pngFix();


	/*$('div.splash').css('display', 'none');
	$('div.splash').fadeIn();
	$('div.logo').css("top", -600);
	$('div.logo').delay(500).animate({
		top: 0
	},{duration:1200, easing: 'easeOutBounce'}); */
	
	$('a.poparbeit').click(
		function(){
		var dieseSeite = $(this).attr('id');
		var dieseURL = $(this).attr('href');
		$('div#toolbox').css({
			'width' : '550px',
			'height' : '700px',
		});
		$('div#toolbox').load('info.cfm?seite=' + dieseSeite + '&weiterleitung=' + dieseURL);
		$('div#toolbox').center();
		$('div#toolbox').fadeIn('fast');
		return false; 
		}
	);
	
	$('a#popzu').live('click',
		function(){
			$('div#toolbox').fadeOut('fast');
			$('div#toolbox').html('');
			return false;
		}
	);
});
