/*
        Projekt : Bigpoint_Portal
        Modul   : portal
        Version : 0.01
        Autor   : David [Snake] Matthias
        Mail    : dave@fuelpipe.de
        Modified: 02.11.2010 12:51:21
*/

$(document).ready(function(){
	
	$("#Popup").css({opacity: 0});
	
	$("#allServer").click(function(){
	  $("#Popup").animate({ 
		width: "420px",
		height: "370px",
		left: "290px",
		top: "170px",
		opacity: 0.9,
		borderWidth: "4px"
	  }, 500, function(){$('#P_content').show().jScrollPane({scrollbarWidth:6,topCapHeight:20});} );
	});

	
    $("#x").click(function () {
      $("#Popup").fadeOut("slow",
	function(){$("#Popup").css({opacity: 0, width:"0px", height:"0px", left:"470px", top:"260px", borderWidth:"0px"});
	$("#P_content").hide();}
	);
    });
	

});

