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] = ", he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words.";
fDesc[3] = "helping a woman by the name of Sara to take advantage of some land that she isn't really using. There, you are going to be able to create the farm of your dreams.";
fDesc[4] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
fDesc[5] = "groups of three or more in each level. The game is very easy to use, and it has got some nice visual graphics and audio effects. You will be able to use the game options to shut up volume, reduce it, use the full screen mode and more. You will see many sea animals ordered in a specific way.";
fDesc[6] = "Help Emily rescue her family's finances in five all-new restaurants, each with a unique menu and theme. Use your earnings to purchase decorations sure to make your customers smile.";
fDesc[7] = "through their own skills with the mouse by bashing gnome characters and similar others, back into the holes they pop out from in their cartoon garden.";
fDesc[8] = "to the left of it. To mark each found word, you need to click its first letter on the game board and then drag the displayed oval over the word to the last letter. The program contains three types of games – quest, sprint and relaxing games.";
fDesc[9] = "wonders of Greek mythology by joining different puzzles figures. Each level is a different figure that you will be able to watch when finished. The game has got very good video graphics and nice sound effects and music.";
fDesc[10] = "your brain to work. Solve over 225 unique puzzles on your way to gold, gems and treasure hunting glory!";
fDesc[11] = "you can buy the game. Go Deluxe for even more fun while playing. Download Mahjongg Fortuna Deluxe and play on your PC any time you want, whether or not you're online.";
fDesc[12] = ", and we must guide them to the correctly colored houses. In addition to this we must avoid Evil Zoogs, as they will trap iggles by touching them. We can use the boost ability to move faster, but be careful while using it, as iggles will get tired easily.";
fDesc[13] = "props master! This game contains two game modes, making 12 award-winning movies using 12 moviesets. Get your act together, because the success depends on you and your countless props.";
fDesc[14] = "decorated the restaurant beautifully and will be serving delicious Christmas treats. This festive game consists of 2 game modes and 7 different restaurants. Roll up your sleeves and lend Emily a hand!";
fDesc[15] = "find amusing stories. You will play the character of a photographer that is working in a paparazzi magazine. You will have to think fast and take a deep watch at the screen to capture photos of celebrities or weird people and sell them to the magazine's owner for some cash.";
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 = '...';
}
}