var fDesc=new Array();
fDesc[1] = "300 layouts, all distinctly original, ranging from super easy to extremely challenging. Mah Jong Medley has 4 game modes to choose from.";
fDesc[2] = "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[3] = "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[4] = "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[5] = "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[6] = "Traveller's Tales and Amaze Entertainment and published by Lucas Arts and TT Games. It is based on Episode IV, V and VI of the Star Wars film saga";
fDesc[7] = "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[8] = "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[9] = "domination. There are a few modifications in this PC version that make it worth playing, even if you like the original Risk. This is the best way to play Risk on your PC.";
fDesc[10] = "faces) to the coming Snoods. If they form a group, they will fall, clearing the board. As you launch Snoods the Danger Bar increases and when it fills up, the screen moves down. If a Snood touches the bottom, the game ends.";
fDesc[11] = "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[12] = "game, since it turns you into a pizza chef cooking pizza for the impatient customers. You have to create matches with toppings and serve the customers as fast as possible. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[13] = "also includes nice cut-scene sequences and animations. You cannot ask for a more close copy of the original game. Very recommendable for all board game fans.";
fDesc[14] = "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";
fDesc[15] = "may surely know, the result of the game is quite unexpected since you never know how the game will turn out. The purpose of the game is well known…You start the game deciding whether to choose a career or pay your way to college.";
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 = '...';
}
}