var fDesc=new Array();
fDesc[1] = "of satellite photographs. There are three versions, the free one for personal users, Google Earth (Enterprise) and Google Earth Pro. Many interesting features: Flight simulator, Sky and Mars, Street Views and 3D Buildings and the fantastic Google Ocean.";
fDesc[2] = "of time travel that we are used to. Instead, it is more of a mental, inner journey to the past of the main character's ancestors. You play him, the main character.";
fDesc[3] = "You control the character with the cursor keys (to move it to the right or left) and you jump with the spacebar. You must remember that the steps are covered with ice, so they are very slippery. Be careful when you jump, without falling.";
fDesc[4] = "battle adventure. Each level will speed up your challenge and will put some adrenaline to your fun. You will love this shooting battle and the challenge of beating your score record.";
fDesc[5] = "thirty hills and compete against other competitors or the CPU. You are also enabled to play online. Fun is unlimited as well as the options this program provides you with.";
fDesc[6] = "install them in your messenger. If that is not enough for you, you also have the possibility of downloading more winks online. You can have a preview of winks before installing them into your messenger.";
fDesc[7] = "the game wasn't great, but there are nice things about it. For starters, the graphics are awesome. You can ride in four different mountains and you can take any path that you want and you don't have a time limit.";
fDesc[8] = "old classic platform games, in which you will have to jump, run, beat enemies and collect power-ups. Your mission is to guide Alex through the jungle to rescue his girlfriend Lola from humans who want to make a bag of her.";
fDesc[9] = "eat him. They are fast and cruel. In order to live a long life try to be quick and smart.";
fDesc[10] = "over others of the same color and make them grow big to clear them. Make big combos and find a way to make long chains of Jellies before time is up or your enemies destroys your power reactor.";
fDesc[11] = "obstacles that slow down the speed of the competitor, food in the road gives energy to run faster. There are 8 different competitors: horse, cougar, rinho, pig, sheep, bear, goat, and tiger. Each creature has different running speed, swimming speed, jump speed and strength.";
fDesc[12] = "to offset, keyboard macros, print preview, search and replace, spell check, variable pitch font, and much more.";
fDesc[13] = ", educational, fun activities to keep a child entertained all year, providing support in every aspect of the National Curriculum. Buy it for an amazing and affordable price.";
fDesc[14] = "embark on a journey to their secret clubhouse. Children must solve 24 challenges using maths, reading, logic, music and other Year 2 skills.";
fDesc[15] = "to another without falling into the river. There are some totems that will provide a nuisance while jumping too. However the game is simple and easy, lacking of a real challenge for the gamer.";
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 = '...';
}
}