var fDesc=new Array();
fDesc[2] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[3] = "or in training mode. Choose between six different players and try playing in all the four different clubs. A billiard game with great graphics and views that you can zoom in or out.";
fDesc[4] = "you pass the level, otherwise you lose. What is hard about this game is that you don’t have a direct shot to each orange pegs and it’s kind of hard to calculate all the bouncing the ball will do when you shot an indirect ball.";
fDesc[5] = ", 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[6] = "excellent 2D game very similar to the famous plumber game, but where Tux (Linux's pet) is the main character. Definitely, SuperTux is a game for both, adults who want to remember their childhood and children alike.";
fDesc[7] = "their type,attack type and the level at which they can be evolved. With the money won, we can bet or purchase several items, such as POKéBALLS,Great Balls,Ultra Balls,Potions and Super Potions";
fDesc[8] = "changes in the climate, which affect your Sims dramatically. The Four Seasons are included in the game: Spring, Summer, Autumn and Winter. Each station and its respective climatology can affect radically the needs, aspirations, desires and fears of your Sims.";
fDesc[9] = "The registered version includes five different games: easy, classic, modern, hard, and extreme. Each game has several levels. In the free demo, we can only access the easy game with seven levels. We can customize the options for a better performance.";
fDesc[10] = "enjoy this challenge in a battle against the thiefs of your treasures. Collect your treasures and ancient pieces to rest your soul and enter the after life.";
fDesc[11] = "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[12] = "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[13] = "and power management functions. It works under Vista, supports USB hard disks and uses S.M.A.R.T. to give detailed reports on disks health.";
fDesc[14] = "with players from around the world. Each delivery returns us to the current NBA season, updating players, incorporating data, and so on.";
fDesc[15] = "lovely creatures called Daggles. With a captivating plot and wonderful graphics, this game really deserves a place in your game collection.";
fDesc[16] = "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[17] = "create machines with predefined objects in order to solve a simple task. The game contains a large amount of puzzles and most of them are really good. If this is the kind of game you like, then try it out.";
fDesc[18] = "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[19] = "that is both addictive and fun. Control Squirt, your water shooting super fish, to keep those pesky wooden balls out of your serene pond. Amazing backgrounds and special effects makes Splash a game you won?t soon forget.";
fDesc[20] = "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 = '...';
}
}