var fDesc=new Array();
fDesc[1] = "photo slide shows in a few simple steps. This incredible software enables you to combine still images, video clips, audio tracks, text, and special effects into you very own movie.";
fDesc[2] = "It takes you to the wonderful world of Egyptian pyramids, to search for uncovered priceless treasures. In spite of being a classic brick-breaking game, it turns out to be not repetitive or too easy as other games of this type may be.";
fDesc[3] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[4] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
fDesc[5] = "beautiful crystals, you'll find it hard to stop playing, attaching crystals to each other and making them disappear.";
fDesc[6] = "creating them seems complicated, with Abrosoft FantaMorph we can do it quite easily. This great program will let you create amazing morphing videos from still images and/or from other videos, all within a friendly interface.";
fDesc[7] = "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.";
fDesc[8] = "attractive story behind this puzzle game that will surely catch you. Jane and Bob, treasure hunters, have a mission to accomplish; make their way to find seven amulets.";
fDesc[9] = ", music and sounds, and is highly customizable. You can choose the picture, type of fire and music you want to display. The screensaver adds an icon on your task bar to launch it or configure its properties.";
fDesc[10] = "game. The idea beneath the game is that Eveline the Wise will have many questions for you, and you’ll have to answer them all by solving different puzzle games. The Realms of Etheria is the scenario of the story.";
fDesc[11] = ", using your video card. Pick up one of the 14 presets or create your own one. Make the difference and have fun! There are no limits.";
fDesc[12] = "fantastic environments fighting his main enemies: lions. The real objective of the game is to collect a certain number of magical gems per level that allows the player to get to the next one.";
fDesc[13] = "excellent effects and it seems as if you were flying just a few feet above the surface of the ocean as the waves were slowly rocking. Also, the view changes constantly, so it doesn't become boring.";
fDesc[14] = "big fireball appears on one side, and jumps to the other with random movements. As this happens, all the dots around the place where the ball crossed the layers will begin moving, as if they were leaving a trail behind the ball.";
fDesc[15] = "Hidden Expedition game, and this task will take you to wonderful places across the globe including New York City, Casablanca, Esmeraldas, and of course the Amazon rainforest, among many others.";
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 = '...';
}
}