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] = "300 layouts, all distinctly original, ranging from super easy to extremely challenging. Mah Jong Medley has 4 game modes to choose from.";
fDesc[3] = "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[4] = "Faerie Queen’s Magic Jewels! Cast magical spells to battle ruthless monsters and the forces of darkness in your quest to recover the Queen’s glittering treasures!";
fDesc[5] = "intuition into a challenging game of patience. My Free Mahjong breaks into reality - it becomes truly 3D!";
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] = "gameplay. Great Mahjong demands from you a lot of concentration and a good memory. Most importantly, its full version can be downloaded from the developer´s at no cost since it is freeware.";
fDesc[8] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board.";
fDesc[9] = "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[10] = "the visual effects aren't very good. The backgrounds are much more brighter and colorful than the tiles. It has a very smooth palying.";
fDesc[11] = "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[12] = "Adventures in Wonderland, Alice's Magical Mahjong is an imaginative journey through a charming world. Help the quirky characters of Wonderland by matching tiles in more than 175 layouts.";
fDesc[13] = "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[14] = "playing. Download Hotel Mahjong Deluxe and play on your PC any time you want, whether or not you're online.";
fDesc[15] = "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...";
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 = '...';
}
}