var fDesc=new Array();
fDesc[1] = "level avoiding to be caught by his enemies, the ghosts. The game can be installed in 17 different languages. Pacman 2005 has 60 levels and three game modes. The difficulty of the game will increase as you play.";
fDesc[2] = "using the cursor movement keys, guiding it through the tipical Pacman mazes, this time in 3D. You can fire at your enemies by pressing the space bar. You will shoot in the four possible directions. You can even destroy blocks of the maze.";
fDesc[4] = "up bonuses along the way and try to find some of the games secrets. This game is made with 3 goals in mind. Fun, fun, fun!";
fDesc[5] = "extra life with the help of keys that will open some closed sections in the labyrinth The movement as in the original version is done with a joystick or you can use the arrow keys at your keyboard.";
fDesc[6] = "through several mazes, gobbling all of the pills lying around. Your best performances are stored in the high score list.";
fDesc[8] = "basic principles of herbal medicine, outlines the properties and characteristics of more than 290 single herbs.";
fDesc[9] = "periods, plan or avoid pregnancy, create your personal statistic for doctor's appointments, ect.";
fDesc[11] = "pacman: you control a pacman that must eat every pill in the level, avoiding to be attacked by colored ghosts. He can beat those ghosts if he has previously eaten one of the bigger pills. The pills will have effect for some seconds, where the ghosts will turn blue, and you will be able to eat them.";
fDesc[12] = "classic arcade and console games throughout the history of video gaming. Trippy Ballz however, is never the same game twice and you never know for sure what will happen next: from flying purple dolphins to robot kitties to little blue pills that make things grow bigger... Jeez!";
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 = '...';
}
}