var fDesc=new Array();
fDesc[1] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[2] = "entrancing play modes, explosive new gems, and dazzling special effects! Brilliant colors, incredibly smooth to play, good sound effects.";
fDesc[3] = "4000 years ago. Match magic gold tiles as you travel through 11 dynasties and 175 levels. Unlock centuries of wisdom to collect the Lost Dynasty Treasures!";
fDesc[4] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[5] = "to move to the next level. The player will have to take decisions very fast because winning time is the most important thing. When starting the game you will have the possibility of choosing the difficulty level: Normal, Hard or Genius.";
fDesc[6] = "gems in order to score points and reveal a path for Samantha to follow. The main objective is to lead Samantha to the end of the path before time expires";
fDesc[7] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[8] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[9] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[10] = "tile-matching adventure that begins over 10,000 years ago. Match magic gold tiles and travel through 12 Japanese eras, unlocking wisdom that will guide you to the Emperor’s lost treasures!";
fDesc[11] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board.";
fDesc[12] = ", and Amazing Action. Although the game mechanics is the same for the four options, what changes is its level of difficulty and puzzle solving.";
fDesc[13] = "electable. Each time you find a couple of matching tiles you have to point it out by clicking on it, and the tiles will disappear from the board. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[14] = "bubbles of the same color, in order to make them explode. Once cleaned the field, the user can enter the next level. Available for download too. Good game for children and the so called \"past century chidren\" :-)";
fDesc[15] = "You must select two matching tiles to remove them from the board, being the goal to clear the board completely. You can also select any of two “Flowers” or “Seasons” tiles, even when they are not identical.";
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 = '...';
}
}