var fDesc=new Array();
fDesc[1] = "I certainly believe there is no beating this year's FIFA. The most apparent change this year is the pace of the game. Everything has been tweaked so that the game plays considerably faster. The first time I noticed this is when the goalie gets the ball.";
fDesc[2] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[3] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
fDesc[4] = "challenge against yourself. When you choose to play against the computer, you´ll play an 8 ball match. You can choose how many frames and which type of room you want to play in, and your desired player name.";
fDesc[5] = "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[6] = "computer. You can even choose your computer opponent´s ability. You can choose the ball you want to hit, and the program will help you showing lines with the path the ball will take when hit.";
fDesc[7] = "very well-known format. The game consists in getting more than three balls of the same color together, once you do that all of the balls with the same color will disappear, but hurry up, because they will all go down, and when they touch the floor you will have lost the game.";
fDesc[8] = "player game, play versus computer or enter a round of tournament. This game allows you to subscribe and personalize your name.";
fDesc[9] = "instance, if you shoot a ball down a pocket with the Dommelsch logo, you will receive one of three kinds of jokers. These let you sabotage your opponent's balls in three different ways. For example you can make one of your opponent's ball stick firmly to the table.";
fDesc[10] = "Ball, and Big Ball, multiple ray-traced balls, explosive bricks, an easy to play Kid-Mode, a euro-techno sound track, and highly addicting game play. New version adds multi-player, more music, and new options.";
fDesc[11] = "with all those who will build a great temple of new faith after deposition of all the enemies of a new pharaoh and his god to the fiery abyss!";
fDesc[12] = "compare it with the previous edition, so if you are already a Peggle player don’t expect many news of this new version. To pass each level you must hit all orange pegs in the screen before running out of balls to shoot.";
fDesc[13] = "bowling you score points by rolling a bowling ball along a flat surface called the lane into objects called pins. The variant used by this game is the 10-pin bowling.";
fDesc[14] = "restoring the long lost gifts of Amon-Ra, the King of Gods.";
fDesc[15] = "graphics and a nice music, which make you believe you are at a bar playing pool. It includes many playing modes: Practice, Eight-ball and Nine-ball modes, and two challenge timed modes in which you have to put all the balls in the pockets quickly.";
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 = '...';
}
}