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



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