var fDesc=new Array();
fDesc[1] = "Games. One of the most eagerly awaited strategy and adventure games, Age of Mythology, finally comes out of Ensemble studies, the creators of the classic game, Age of Empires, the most outcoming of this video games genre.";
fDesc[2] = "awesome wildlife scenes. Challenge yourself with four distinctly addictive game modes. And you can save your progress as the game goes on.";
fDesc[3] = "case you don't know the previous game, your goal is basically to fit a specific number of different pieces into a board with the shape of animal. You can rotate the pieces, but you have to very fast.";
fDesc[4] = "fun option to “virtually” be there. It's a city adventure game in which you’ll be going around this beautiful city. It basically consists on looking and picking items from different locations, following a list provided by the game.";
fDesc[5] = "process, you will also learn interesting historical facts and also collect great mementos from completed levels to see the postcards of the places you have visited.";
fDesc[6] = "choose from many options to customize your characters such as gender, name, hairstyle and face. You can also choose a pet between a cat and a dog. This program has a good looking interface and it is really fun to play.";
fDesc[7] = "upload them into your iPhone or PSP. It is possible to use various video filters to smoothen overpixelised graphics, or compress some resource files - or even use soundfonts to make the MIDI music sound more like an orchestra.";
fDesc[8] = "father, an archaeologist, disappears, her daughter will start an amazing adventure to find her. You will have to search for unique hidden objects that you had heard of in every level.";
fDesc[9] = "story. Syberia II takes the adventure exactly at the point where it was interrupted in the previous game, continuing the story and deepening all that was seen in the first chapter.";
fDesc[10] = "new cases. In this videogame, we can use tools like luminol, fingerprints detectors, etc. This videogame, like the two previous try to to solve cases, and though it do not seems at first, might have some relationship to each other.";
fDesc[11] = "adventure games like the ones that used to be created in the nineties. AGS will let you concentrate more on the process of game creation, and make the development of different stages of your game an easy task.";
fDesc[12] = "precious works of art and treasures have been stolen and hidden around the world. Funkiball is a fun game that brick-busting games fans will fully enjoy.";
fDesc[13] = "materials, simulations, interactive fiction, online multiplayer environments and more. Full tutorial included.";
fDesc[14] = "at the different stages, desserts, woods, jungle, etc... All you have to do is find them and jump over their bubbles in order to guide them to the exit door of the stage.";
fDesc[15] = "existence of different items that enhance the game. For example, in the first stage there is a cannon. We must lead the golf ball to a hole near the cannon, and then we can aim the cannon and shoot the ball towards the hole.";
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 = '...';
}
}