var fDesc=new Array();
fDesc[1] = "tiles for bonus points in the Tournament mode to beat the other player and increase your rating higher and higher.";
fDesc[2] = "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[3] = "wonderful variation, Maui Wowee lets you decide if you prefer to slide objects or swap 'em! Of course, all your favorite puzzle features are here too.";
fDesc[4] = "increase your magic level, you will be able to use spells . It features three game modes: strategy, action, and time trial.";
fDesc[5] = "solitaire with inlay puzzle fun. Watch beautiful vistas subtly change as you progress in this perfectly harmonious union of two all-time classics!";
fDesc[6] = "intuition into a challenging game of patience. My Free Mahjong breaks into reality - it becomes truly 3D!";
fDesc[7] = "else. Games include MahJongg Spider, MahJongg FreeCell, MahJongg Gaps, and Four Rivers.";
fDesc[8] = "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[9] = "the #1 series*! Select your favorite classic Mahjongg game, or learn a new variation. Challenge Yourself With Creative Tile Layouts. Test your skill and try your patience with fun 3D Mahjongg layouts, or create your own with the Layout Editor!";
fDesc[10] = "the images that you will use as tiles of the mosaic. You will be able to create collections of .JPG files, load a ready-made collection, use the images in black & white, extract images from an .AVI file or use some Photo Utilities.";
fDesc[11] = "Your goal is to recover stolen Egyptian treasures by matching two identical tiles, making them disappear from the board.";
fDesc[12] = "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[13] = "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[14] = "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[15] = "but the Tile Covers Calculation will help you to create your new room with your own ideas in a fun but productive and accurate way. Using this program you can create your room virtually with three-dimensional views of the model.";
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 = '...';
}
}