var fDesc=new Array();
fDesc[1] = "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[2] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[3] = "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[4] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[5] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[6] = "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[7] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board.";
fDesc[8] = "1 side free, and which have no other tiles on top of them. Your second goal is to earn tiles. There are 27 tiles to collect, 9 bronze, 9 silver and 9 gold. You can download new tiles sets and choose what music to play during the game.";
fDesc[9] = "Rebuild the empire with tiles! Dragons have wreaked havoc on the empire. Now the only way to restore balance is by using an ancient set of Mah Jong tiles. Enjoy hundreds of layouts in this epic tale of tile matching!";
fDesc[10] = "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[11] = "tiles. Unique game analysis, statistics for each board layout, highscore tables and relaxing ambient background music!";
fDesc[12] = "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.";
fDesc[13] = "great features includes: unlimited Undo and Redo, random play, create your own background images, sound effects and background music";
fDesc[14] = "gather pearls that will allow you to purchase special powers, you will also be able to use different powerups and earn trophies.";
fDesc[15] = "their memory skills in a classic tile match up farm themed environment in Little Hopper's Memory Matching Game.";
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 = '...';
}
}