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] = "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[3] = "intuition into a challenging game of patience. My Free Mahjong breaks into reality - it becomes truly 3D!";
fDesc[4] = "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[5] = "Beat the time pulling out all the pair of tiles. Remember you can only put out identical tiles by pairs. Enjoy and excercise your mind.";
fDesc[6] = "of several levels. You must use your mouse´s left button to choose pairs of identical tiles, in order to eliminate them all from the board. You can´t choose just any tile, it must be at the corner of a layer, with at least one free side, or you won´t be able to choose it.";
fDesc[7] = "tiles set in a Chinese Zodiac. Match your way through over 100 unique mahjong puzzles. Play in Traditional or Garden Modes. This game has been rated ”E” (Everyone) by the ESRB.";
fDesc[8] = "playing. Download Hotel Mahjong Deluxe and play on your PC any time you want, whether or not you're online.";
fDesc[9] = "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[10] = "story which makes the game more attractive. The game includes three game modes: Ancient Tales mode, which allows you to solve wonderful Mahjong puzzles as you are told five dramatically narrated traditional Chinese tales...";
fDesc[11] = "main goal is to clear all the tiles and collect the Lost amulets of earth elements. Challenge your speed and play versus time.";
fDesc[12] = "select them and clear them. To reach each level you must find the golden tiles and make them available to collect them.";
fDesc[13] = "quite simple, following the classic mahjong rules. The objective is to remove from the board as many tiles as you can, by connecting matching tiles which have any of its side edges free.";
fDesc[14] = "through 5 different worlds; Egypt, China, Rome, Inca and Navajo. There are two game modes: Classic and Rivers, in which the game can get very tricky!";
fDesc[15] = "make you have a great time. Challenge your speed and mind matching pairs of ancient Chinese pieces. Graphics are good and moves are simple but this game is full of fun.";
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 = '...';
}
}