$(document).ready(function() {
	// Menu
	$(".menu li").mouseenter(
		function(){
			$(this).children("div").stop().fadeTo("fast", 1.0);
	});
	$(".menu li").mouseleave(
		function(){
			$(this).children("div").stop().fadeTo("fast", 0.0, function() {
			$(this).css({'display': 'none'});
		});
	});
	
	// Servers
	$(".server p").click(
		function(){
			$(this).next("div").slideToggle("fast");
	});
	
	// Members	
	$(".wrap").mouseenter(
		function(){
			$(this).children(".info").children(".ptext").stop(true, true).slideDown('fast');
	});
	$(".wrap").mouseleave(
		function(){
			$(this).children(".info").children(".ptext").slideUp('fast');
	});
});
