var fDesc=new Array();
fDesc[1] = "way around because you will be surrounded. Go ahead and crush all the soldiers on your way. Place mines for enemies that are real close to you. If you are able enough establish a good perimeter so your enemies won´t get so close.";
fDesc[2] = "exciting colorful graphics that keeps players wanting more. It is a great tool for people who want to practice their English vocabulary. It is based on the American TV show with the same name. The player can choose the characters appearance, including hair color and style.";
fDesc[3] = "explosions. You have to join the same kind of jewels, as you do it, they will explode and in that way you will reach points. You will find a lot of precious stone such as ruby, emerald,amber and so on.";
fDesc[4] = "resulting from the successful and amazing games. In Tomb Raider Legend, Lara comes to alive with intricately animated expressions, moves and abilities.";
fDesc[5] = "bowling you score points by rolling a bowling ball along a flat surface called the lane into objects called pins. The variant used by this game is the 10-pin bowling.";
fDesc[6] = "participate. You can customize your cars and buy new ones. With several different events and game modes, this game is a car-junkie's dream.";
fDesc[7] = "Aerosmith? The group of Boston with 35 years of history behind them has introduced the second significant foray into the PC Gaming Universe.";
fDesc[9] = "get Slingos (5 matches in a row). What you see in the screen is a combination of a slot machine and a bingo’s card. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "choose not only your name as a player, but your look too. You’ll be asked to choose your skin color, hair color, hair style and clothes style. Also, the game will ask you whether you use glasses. Try this game for 60 minutes before you buy the licensed version";
fDesc[11] = "objects in 30 different scenes, spin the wheel and play 10 different mini-games. To skip the mini-games you don't like to play find the extra hints and collect chips. Are you the happy contestant who will be going home with 5 million dollars?";
fDesc[12] = "Landers, where you have to spin the wheel and travel to different locations such as Spain, China, Australia, Brazil, to name but a few.";
fDesc[13] = "collect balloons and flags to decorate your own Carnival of Madness! Come Spin & Play today! Step right up and have some fun at the Carnival of Madness - a magic theme park packed with crazy attractions for all ages!";
fDesc[14] = "game or other alternatives like choosing an Indian teepee to find prices, or pick up golden Totems, among other surprises. This game is very well designed and it will fulfill your fun.";
fDesc[15] = "challenges or get punished for bad results. You can choose the power of your spin by pressing the left mouse button when the power bar is up or you can choose a slow spin to get in a correct place when the power bar is down.";
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 = '...';
}
}