function countryshow()
{
    $("#users").hide();
    $("#countries").fadeIn("slow");
}

function playershow()
{
    $("#countries").hide();
    $("#users").fadeIn("slow");
}

function official()
{
    $("#unofficial").hide();
    $("#official").fadeIn("slow");

}

function unofficial()
{
    $("#official").hide();
    $("#unofficial").fadeIn("slow");
}

function lgslshow()
{  
    $("#lgsl").fadeIn("slow");
}

function lgslclose()
{  
   $("#lgsl").hide("slow");
}
