var fDesc=new Array();
fDesc[1] = "together. When there are no valid plays, flip a card from the stock and try again. Jewels are dropped onto the board based on how you play the cards. The jewels dropped will match the suits of the cards that are played.";
fDesc[2] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[3] = "It is developed and published by TikGames, LLC. In this amazing and interactive game you will find that the original rules of this popular board game have been respected.";
fDesc[4] = "includes great new features that make this game absolutely enjoyable and addictive. With this game, you will become the owner houses, buildings, and land, which will later give you profit";
fDesc[5] = "game is to eliminate pieces from a pile by selecting two pieces with the same drawing. To be able to eliminate pieces they can´t have another piece over them. Game ends when all of the pieces are eliminated from the pile or when the time runs out.";
fDesc[6] = "the game board so that the numbers 1 through 9 occur exactly once in each row, column, and 3x3 box. Your goal is to fill in the empty squares following the simple rule above.";
fDesc[7] = "choice suitable for all ages what makes it ideal for the whole family. Ultimate Dominoes presents five classic domino game variations, from easy to hard, thought to suit beginners and experienced players as well, so you can set the options to suit your skill level.";
fDesc[8] = "better way. The basic rules are the same as in the original game, but it includes great new features that make this game absolutely enjoyable and addictive";
fDesc[9] = "to do is create matches on the board by placing the pieces you get from the game. On the top of the screen, you’ll be seeing the next three or four pieces to come, so you can anticipate your movements.";
fDesc[10] = "to the left of it. To mark each found word, you need to click its first letter on the game board and then drag the displayed oval over the word to the last letter. The program contains three types of games – quest, sprint and relaxing games.";
fDesc[11] = "alternate moves. The object of the game is to capture all the enemy pieces, or block them. The pieces move only over the dark squares, diagonally, one square at a time and always forward, for common pieces. The Kings can move backwards, too.";
fDesc[12] = "board with wall in three sides, and you with a bat in the remaining side. You have to make a ball bounce on the walls or your bat, and destroy bricks on the board.";
fDesc[13] = "over 1200 different Crosswords. The collection guarantees entertainment for gamers of all ages. You can challenge your friends or family. You can also play by yourself and take the highest scores or against one of the charming CPU characters.";
fDesc[14] = "computer. There are two teams, one of them with white pieces, the other one with black pieces. White pieces play first. By turns, you must roll the dice pressing the \"Roll\" button. Then you must select the piece to move and the target point.";
fDesc[15] = "recover that part of your childhood, playing with this great collection of board games. They have been put together under the name of Bicycle Board Games. All the games included here are great board entertainment games classic";
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 = '...';
}
}