var fDesc=new Array();
fDesc[1] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[2] = "continues to GTA IV. Although the game is a bit outdated the fun has not been lost, and thanks to Rockstar you can download the game from their website now. You cant miss this chance.";
fDesc[3] = "The environment is the imaginary city of Lost Heaven, but clearly inspired in the aspect of a large United States cities in those years, as New York or Chicago.";
fDesc[4] = "Teach them survival skill as building, fishing, exploration, research and healing other people. Guide them and build your village solving 16 puzzle of different difficulty levels.";
fDesc[5] = "is the creator of the original script of the video game.The argument of Jericho takes you to a city in the Middle East, Al-Khali, erected on the ruins of other ancient cities.";
fDesc[6] = "attractive story behind this puzzle game that will surely catch you. Jane and Bob, treasure hunters, have a mission to accomplish; make their way to find seven amulets.";
fDesc[7] = "has a ripper that can analyze other game files. It is simple to use and very powerful. If you handle resources from different games, this is the only program you need.";
fDesc[8] = "different buildings under the ocean. In this game you can select timed mode to speed you ability and make your tasks more difficult.";
fDesc[9] = "kind, above even games like Age of Empires. The Settlers: Heritage of Kings part of a completely different premise.";
fDesc[11] = "with walls, using the arrow keys to move and the space bar to fire. When you beat an enemy wave, you can go to the next level.";
fDesc[12] = "certain items in different messy scenes. What makes this game a bit different from others of the kind is that it organizes the game into three different types of searches: Silhouette Round, Find 10 Round, and Puzzle Round.";
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 = '...';
}
}