var fDesc=new Array();
fDesc[1] = "developers, including Atari, Popcap and WildTangent Studios. WildCoins are a payment system you can use to play WildGames. They work like quarters in an arcade.";
fDesc[2] = ", those Konami games that were originated by the game Donkey Kong. In this game you need to go through a lot of screens, avoiding dangers and enemies, and collecting gold coins, till you finish your mission.";
fDesc[3] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[4] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[5] = "marks representing hidden dig sites. You have to complete your treasure collections to unlock them. In this game you’ll be exploring ancient ruins, discovering fabulous treasures and winning piles of coins.";
fDesc[6] = "of the pocket watch made by Abraham-Louis Breguet, who has been called the greatest genius of watch making in history. You will feel the urge to reach in the water and grab it yourself to solve the mystery of the never-stopping watch!";
fDesc[7] = "easy to use and is quite addictive. It has got some good visual effects as well as good music and audio effects.";
fDesc[8] = "to do is create matches on the board by placing the pieces you get from the game. On the top of the screen, you’ll be seeing the next three or four pieces to come, so you can anticipate your movements.";
fDesc[9] = "go where you desire. The main objective is to grab the coins located on strategic places on the board. Time is running and you have a specific number of coins to collect in order to achieve the next level.";
fDesc[10] = "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[11] = "classic swap or Free Swap. If you create horizontal matches you get bronze coins. If you create vertical matches you get silver coins. If you create combos, you get golden coins and some bonus score.";
fDesc[12] = "mouse or the keyboard arrows, you control a ball which is in constant movement, Vort, guiding it through the playing field with the goal of collecting all the coins, while sorting out several types of obstacles.";
fDesc[13] = "complete, a money bag will fall, and to get it, you must explode the coins right under the bag. When you get the required number of money bags you'll get to the next stage. But, be careful not to let the coins reach the top part of the game zone.";
fDesc[14] = "as you can to set groups of identical tiles in order to turn them to gold. You can collect a lot of coins and enjoy a great adventure in this game.";
fDesc[15] = "The game is really fun, especially if you want to spend and share good moments with friends in front of your PC. Your mission is to guide the wagon through the correct paths in order to collect coins and earn points.";
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 = '...';
}
}