var fDesc=new Array();
fDesc[1] = "airplanes, the improvement of the multiplayer support , including the possibility of two players flying a single airplane, and the occupation of the control tower. The 11.0 version brings some improvements and enhancements to the already successful flight simulator.";
fDesc[2] = "You control the character with the cursor keys (to move it to the right or left) and you jump with the spacebar. You must remember that the steps are covered with ice, so they are very slippery. Be careful when you jump, without falling.";
fDesc[3] = "Frostcrag Spire in the game. A powerful mage lives there, and he entrusts it to the player's presumably capable hands. It provides everything a warrior could need: altars for summoning familiars and creating spells and enchanted items, and more.";
fDesc[4] = "tower that will display the actual time. The clocks on the tower show you he correct time and can be set to strike every 15, 30, 45, or 60 minutes, or you can turn the sound off completely.";
fDesc[5] = "running vs a computer player with a certain period of time. this game will entertain you with the different levels and will turn you a master of construction.";
fDesc[6] = "to the test your abilities and fast reflexes. You have to help a charming monkey to build and arrange an stable tower of numbered cans, faster than his contester and in a limited time amount of time.";
fDesc[7] = "land where words have yet to be invented. Test your word skills in 25 unique game types and watch your tower soar. Succeed, and your tower will reach heights never imagined.";
fDesc[8] = "given tower more stable and durable than your opponent's by replacing blocks with numbers. The numbers should be increasing from the top to the bottom of the tower.";
fDesc[9] = "homes for the Tower Toons. The game can be played in four different modes: \"Story\", \"Quick Game\", \"Time Challenge\" and \"Party Game\". But you´ll have to play some levels in the Story mode in order to unlock the other modes.";
fDesc[10] = "intriguing puzzle adventure? Explore more than 100 mysterious rooms in Zodiac Tower. An intriguing puzzle adventure! Go Deluxe for even more fun while playing.";
fDesc[11] = "story, told through a hundred levels.";
fDesc[12] = "game, you play a book collector who visits London on vacations. On your search for clues, you will explore iconic locations of the beautiful city of London including the Savoy Hotel and Theatre, the Tower of London, Tower Bridge, Westminster Abby, among others.";
fDesc[13] = "The game is quite entertaining, and what makes it definitely better is that as your tower grows, it will start to shake, making the gameplay much harder but also more exciting.";
fDesc[14] = "and stable as you can. And your main problem is lack of materials. Sometimes provider brings you absolutely useless things.";
fDesc[15] = "powerful mage lives there, and he entrusts it to the player's presumably capable hands. It provides everything a warrior could need: altars for summoning familiars and creating spells and enchanted items, and more.";
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 = '...';
}
}