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] = "you have to throw balls with a given color to groups of two or more balls with the same color, making them disappear before they reach a hole located near the center of the screen.";
fDesc[3] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[4] = "your hamster fall down in a wrong way, or you can break his ball and loose time. Reach the goal before the time is up and enjoy each new level of this game.";
fDesc[5] = "alien ships, upgrade your weaponry with extra-weapons, blow up enemy barriers and defeat powerful bosses. Lots of special effects, unique tactics for each level, nice music and sound FX, Worldwide Hall of Fame and much more.";
fDesc[6] = "a realistic looking environment with different scenarios. AssaultCube works on 64-bit MS Windows (Windows 2003 Server/XP/Vista), All 32-bit MS Windows (95/98/NT/2000/XP/Vist a/2003 Server) and All POSIX (Linux/BSD/UNIX-like OS’s.";
fDesc[7] = "made its grand debut on the XBOX 360 when the console was just released. The game introduced certain features that were long missing from the previous games. The most important change from the previous game is the great graphics that this game has.";
fDesc[8] = ", in around 20 missions and two game-play modes. With good graphics and sounds that complement the game-play, this game is very complete. But a price tag that high is bound to make your wallet think a bit about the game.";
fDesc[9] = "goose, shear a sheep, milk a cow and a goat, and enjoy the hard work of a farm. This game allows you to play a simple mode or a story arcade.";
fDesc[10] = "a great simulation game that allows you to play a single game or a party mode. Challenge a friend and have a great shooting emotion.";
fDesc[11] = "the galaxy. This fast-paced game is full of action, as enemy ships and huge meteorites appear from all sides, forcing you to avoid them while at the same time shooting your enemies and collecting the power-ups.";
fDesc[12] = "main reason why I am saying that is because the game doesn't put much emphasis on recreating the flying tactics and physics that are needed for a game to be called a flight simulator.";
fDesc[13] = "mode. In the action mode you will have to catch as much fishes as you can in a limited time, and in the campaign mode you have to catch similar fishes in a row. During the game you can buy different accesories while you get combo goals.";
fDesc[14] = "intended to provide a way for adults and children to get started in the games creation. The Games Factory provides all the stuff you´ll need to manufacture Arcade games, Platform games, Adventures and Screen Savers.";
fDesc[15] = "the hottest brick-busting action you've ever seen? Download Action Ball 2 today and find out!";
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 = '...';
}
}