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] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[3] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[4] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[5] = "from the game board. Some of the tiles conforming the game board are made of gold. You have to collect all of the gold tiles on the game board to complete the level. To do that, collect gold tiles by removing the objects on top of them.";
fDesc[6] = "wonderful variation, Maui Wowee lets you decide if you prefer to slide objects or swap 'em! Of course, all your favorite puzzle features are here too.";
fDesc[7] = "caricature art. This software contains features such as caricature effects, comic rendering, green screen, face swap, head-on-body, comic rendering, text, clip part and many other novelty templates.";
fDesc[8] = "Baudelaire (Violet, Klaus and Sunny) and their friends will have to fight against Count Olaf to stop his dastardly deeds through different worlds This puzzle game can be played in two modes: Swap Monster for younger players, and Deduction Junction for older kids";
fDesc[9] = "swap the tokens by clicking them with the mouse in order to create matches of three or more. This game has a clock and a limited time to complete each level. If you fail to complete a level before the time runs out, you’ll have to replay it.";
fDesc[10] = "matching groups of three or more and turn the board to gold in more than 120 brain-bending levels. Create perpetual cascades by creating matches while new game pieces are falling into place.";
fDesc[11] = "are rendered with Japanese style and show different seasons of the year. Swap game pieces to clear filled cells in two game modes. In the Arcade mode you must clear cells in a limited time.";
fDesc[12] = "level of this game will increase your challenge and each puzzle will bring you more obstacles to find the exits. Match identical tiles to clear spaces in front of you and walk to the exit.";
fDesc[13] = "classic swap or Free Swap. If you create horizontal matches you get bronze coins. If you create vertical matches you get silver coins. If you create combos, you get golden coins and some bonus score.";
fDesc[14] = "decide if you prefer to slide objects or swap 'em in a wonderful variation! Of course, all your favorite puzzle features are here too. Featuring an in-game tutorial and editor to make your own levels.";
fDesc[15] = "challenge their personal best scores. You're in control to choose the game that fits your own personal style.";
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 = '...';
}
}