var fDesc=new Array();
fDesc[1] = "new restaurants. Unlimited, unrestricted gameplay, 50 new story mode levels, 6 new customers, take customer reservations, train new waiters for each restaurant.";
fDesc[2] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[3] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[4] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[5] = "extremely fun and challenging. There is more to winning than having a better army, I think. You have to keep an eye on many things so that your country is the best and survives each campaign.";
fDesc[6] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[7] = "missions that will give you the ability to manage successfully your own zoo. The tasks involve subduing, cleaning, feeding and healing skills. During the game you will be guide by the tutorial, that will make easier completing the tasks.";
fDesc[8] = "the best space RTS ingredients. A long history, several factions, hundreds of weapons, strong multiplayer component and many ships and flying hours.";
fDesc[9] = "sound like something only accessible to great leaders like Julius Caesar or Napoleon, but there are already many games that have managed to convince you that you are able to create a world empire too just clicking your mouse.";
fDesc[10] = "introduced the corrupts, better known as the Zann Consortium, a faction leaded by a strange, dark and twisted character named Tyber Zann.";
fDesc[11] = "published by UbiSoft. In video games, as in many other fields, change is essential to evolve. Surely this is what the Blue Byte staff thought when they decided to work with The Settlers: Rise Of An Empire.";
fDesc[12] = "Persia is to create matches of three in a row (or more), by clicking on adjacent tiles to swap them. Some of the tiles give you resources, such as gold, supplies and food. You have to collect the three types of resources in order to buy buildings for your city.";
fDesc[13] = "games I have ever played. There are many different types of strategy games, but I particularly like the ones in which you have to gather resources and create a strategy in order to prevail. Empire Earth 2 is one of those games.";
fDesc[14] = "path of the Open Palm or Closed Fist. The game has customizable controls which also feature support for game-pads as well as keyboard and mouse. It has an increased resolution support along with various new visual effects.";
fDesc[15] = "Rebuild the empire with tiles! Dragons have wreaked havoc on the empire. Now the only way to restore balance is by using an ancient set of Mah Jong tiles. Enjoy hundreds of layouts in this epic tale of tile matching!";
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 = '...';
}
}