var fDesc=new Array();
fDesc[1] = "amount of points possible in 20 spins. The game presents 3 modes: Classic, Mixed Matrix, and Patterns. You can change backgrounds, keep track of your scores, and control audio. Not available for Mac.";
fDesc[2] = "and connect the left side of the playfield to the right side in order to connect flames to rockets and make them explode and disappear from the board, thus adding new ones.";
fDesc[3] = "is only one basic and simple rule and is to place one card next to the other with a value of one less or one greater, neverminding the suit. It's a game very easy to learn, you'll be playing cards in no time, but you will find yourself trapped for hours mastering the game.";
fDesc[4] = "Blackjack. They differ mainly in the amounts of the bets. Barroom´s bets go from $1 minimum to $200 maximum, while Vegas´ bets go between $100 minimum to $1000 maximum.";
fDesc[5] = "is fun, non violent, and all family members can play it. With visually attractive graphics, this game guarantees fun for gamers of all ages.";
fDesc[6] = "Games. Sid Meier's Railroads! represents the return of a classic after being revised and updated in its appearance and game options. The best rail simulator awaits you in this addictive title.";
fDesc[7] = "3x3 blocks with the numbers from 1 to 9, without repeating the same number neither in the 3x3 block, or the same row or column. When you begin the game, some numbers are in its place already.";
fDesc[8] = "includes more than ten beautiful photographs and the possibility of transforming your own pictures into a new jigsaw game. The full version of Magic Jigsaw is absolutely free.";
fDesc[9] = "the game is to fill a set of 3x3 squares, divided in 3x3 blocks, with numbers from 1 to 9. The numbers can´t be repeated into the block, or in the same line or column.";
fDesc[10] = "interface. Download Free Solitaire World and Play for Free!";
fDesc[11] = "entertaining and allows for a lot of repetitive value. There are plenty of power-ups and random events that keeps the game fresh. Very recommendable game.";
fDesc[12] = "assistants, buy medical equipment and complete the task of each level of this game. A very well made game with great moves and graphics.";
fDesc[13] = "50 pictures, you will enjoy viewing the popular cat doing its favorite activities: taking its naps, sitting on the couch to watch TV, eating lasagna or playing jokes at the clueless Odie. The game is fully enjoyable and a demo version can be downloaded from the developer's website.";
fDesc[14] = "challenge. Find the figures and collect prizes to fill up your pot of gold before time is up. Solve each level and increase your challenge with Lucky Clover.";
fDesc[15] = "prices like teddy bears as in a carnival and upload your power, speed and mass. The game will show you the efficiency of your shots, become an expert and knock lots of bottles in one shot.";
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 = '...';
}
}