//jeśli klient już tu był to można mu przewinąć stronę, nie?
$(document).ready(function(){
	$("#dane").hide();
	$("#aurora").show();
	
	$(".server").hover(function(){
		var serwer = $(this).children("h1").text();
		if (serwer == "Informacje o Aurorze") {
			$("#dane").fadeOut("fast", function(){
				$("#aurora").fadeIn("fast");
			});
		} else {
			$("#aurora").fadeOut("fast", function(){
				$("#dane").fadeIn("fast");
			});
		}
	}, function(){
		//nic
	});



	$("#pokaz-aurora").click(function(){
		$("#dane").fadeOut("fast", function(){
			$("#aurora").fadeIn("fast");
		});
		return false;
	});
	$("#pokaz-dane").click(function(){
		$("#aurora").fadeOut("fast", function(){
			$("#dane").fadeIn("fast");
		});
		return false;
	});
});

