var fDesc=new Array();
fDesc[1] = ", Casino, Arcade, etc. All you have to do is choose your game, download it and start playing! Besides, RealArcade helps you to easily access games installed in your PC. Download RealArcade and enjoy playing for hours.";
fDesc[2] = "reveal beautiful photographs. You can also download more images or add your own. You will be given puzzle pieces on a loading dock and you must click to use them into the car one at a time without leaving any gaps.";
fDesc[3] = "You will have a board full of colored gems. You need to swap identical gems .Swap adjacent gems to make sets of three. If you have the option of swapping four gems that will create a power gem that, when swapping it too, will give you extra points.";
fDesc[4] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[5] = "desired difficult level. The harder the level, the smaller the pieces. You can go from a very easy 4 pieces puzzle to a very hard 442 pieces puzzle.";
fDesc[6] = "addictive and easy to play, Puzzle Inlay offers over 60 picture puzzles to inlay with more than 18 varieties of gems. The purpose of the game is easy yet challenging.";
fDesc[7] = "how they blow out. The game offers three different game modes, not very different from each other. Definitely it's not the game of the year.";
fDesc[8] = ", and then in another one, to swap its positions and form words. You can play in Action (timed) or Puzzle (untimed) mode.";
fDesc[9] = "is only one basic and simple rule and is to place one card next to the other with a value of one less or one greater, neverminding the suit. It's a game very easy to learn, you'll be playing cards in no time, but you will find yourself trapped for hours mastering the game.";
fDesc[10] = "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[11] = "pictures or choose from the supplied thematic galleries. Random jigsaw pattern is used for each new game. Generated puzzles can be also printed on paper.";
fDesc[12] = "great story which enhances the gamer experience. Graphics are beautiful and music and sound effects help a lot to create a great experience.";
fDesc[13] = ", the present and the future. And their predictions always come true. What if these runes are not just ordinary runes?";
fDesc[14] = "over 1200 different Crosswords. The collection guarantees entertainment for gamers of all ages. You can challenge your friends or family. You can also play by yourself and take the highest scores or against one of the charming CPU characters.";
fDesc[15] = "Games and Hoyle Board Games. Bend your mind around 18 challenging puzzle games, from crosswords to word searches. Then test your skill at dozen board favorites. They’re two great titles for one great price, with all the quality and fun you’ve come to expect from Hoyle!";
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 = '...';
}
}