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] = "which you choose the layout you want to play and the breathtaking Endless mode in which you remove tiles from an ever-rising tower of game pieces. Mahjongg Artifacts is a striking new entry in the fiercely competitive Mahjongg category of casual games.";
fDesc[3] = "300 layouts, all distinctly original, ranging from super easy to extremely challenging. Mah Jong Medley has 4 game modes to choose from.";
fDesc[4] = "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[5] = "development for 10 years. The purpose of the game is to remove all the tiles from a board. The rules are simple and the game is extremely addictive The tiles must be removed by pairs.";
fDesc[6] = "letters, and instead of creating pairs as in a regular Mah Jong game, here you will have to spell words with the available letters in the board.";
fDesc[7] = "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[8] = "travel around the world discovering funny facts about each city you visit. Design your own layouts or customize the game with the additional modes. Listen your own music while you play Mah Jong Adventures.";
fDesc[9] = "introduces a quest mode with several levels with increasing difficulties, it is easy to learn and features good gaphics and sounds.";
fDesc[10] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[11] = "classical Mahjong tile sets and millions of possible combinations! You can also play matching-games type with funny tile sets.";
fDesc[12] = "intuition into a challenging game of patience. My Free Mahjong breaks into reality - it becomes truly 3D!";
fDesc[13] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[14] = "the pile with the ones on the table to make both disappear. There is a Joker that can mach any card. Your goal is to match all face up cards. The Undo button allows you to undo a wrong move.";
fDesc[15] = "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[16] = "of different hierogliphic chips.";
fDesc[17] = "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[18] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board.";
fDesc[19] = "for free is UNLIMITED!";
fDesc[20] = "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.";
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 = '...';
}
}