var fDesc=new Array();
fDesc[1] = "Vegas Heist, but it's OK. The story is very similar to the original, but this time you are hired to find a hidden fortune within 17 hours.";
fDesc[2] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles.The first one that you will notice is \"represent your country,\" which allows you to pick a country and start a sort of identity online.";
fDesc[3] = "You will choose a character that will represent you on the screen. Once done, you will fight against other 28 different Nintendo characters in a platform scenario.";
fDesc[4] = "editor by liberostelios. As its name mean, the editor allows you to modify and create your own stadiums for the PC game version, in fact there are a lot of kits developed by different PES community members that were created using this tool.";
fDesc[5] = "meanest and most destructive machines in the world known for its monster size the power that goes with it. In this game you can experience the crazy stunts the high adrenaline races destruction rampage.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}