    //menu principal
	
  $(document).ready(function(){				
					 					   
    $("#menu-principal").click(function () {
  	  $("#descargas").fadeOut("fast");
	  $("#ranking").fadeOut("fast");
	  $("#servers").fadeOut("fast");
	  $(this).delay(200,function(){
	  $("#home").fadeIn("slow");
	  $(".preLoader").hide();
	  });
    });
	
    $("#menu-descargas").click(function () {
  	  $("#home").fadeOut("fast");
	  $("#ranking").fadeOut("fast");
	  $("#servers").fadeOut("fast");
	  $(this).delay(200,function(){
	  $("#descargas").fadeIn("slow");
	  });
    });

    $("#menu-servers").click(function () {
  	  $("#descargas").fadeOut("fast");
	  $("#home").fadeOut("fast");
	  $("#ranking").fadeOut("fast");
	  $(this).delay(200,function(){
	  $("#servers").fadeIn("slow");
	  });
    }); }); 