var fDesc=new Array();
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] = "with all those who will build a great temple of new faith after deposition of all the enemies of a new pharaoh and his god to the fiery abyss!";
fDesc[4] = ", there is a lot more than LEGO-created characters and environments to it. This game divides the three Indiana Jones movies into 6 chapters each, so it is like playing through the movies all over again.";
fDesc[5] = "island of Pixelus. An old priest asks him to repair the floor of the Temple of the island, saying that Pixelus´ gods are upset for the condition of the floor. If this is your first time with this game, you will be taught by the Cyclop how to play it.";
fDesc[6] = "order to help you. Solve all the puzzles that will be presented to you at the different stages of each temple. Enjoy hours of fun solving puzzles in this great game.";
fDesc[7] = ", relating with the background story. There are also a couple of bonus levels that do not involve a ball. This is a refreshing game with a very old formula.";
fDesc[8] = "cursed! Now it's up to you to solve brain-bending puzzles on your quest to reach the Temple of Time and lift the curse. Use your matching skills, unlock the talismans and make your way to the mysterious temple. Azkend Deluxe: a magical adventure of puzzling fun.";
fDesc[9] = "wonder. The relic your archaeological team uncovered is more powerful than originally thought. For starters, it's cursed! Now it's up to you to solve brain-bending puzzles on your quest to reach the Temple of Time and lift the curse.";
fDesc[10] = "ancient brick-busting fun in Temple of Bricks. Featuring awesome explosive power-ups, unique brick types, and a stirring backdrop, get lost in fast family fun today.";
fDesc[11] = "different directions. The objective of the game is to create matches of three-in-a-row (or more) arrows of same color. To do that, you have to move the arrows by clicking on them with your mouse. Try this game for 60 minutes before you buy the licensed version.";
fDesc[12] = "graphics and whipping up music will make Chak?s Temple game your favorite.";
fDesc[13] = "Topple level after level of multi-coloured bricks high atop a magnificent temple. Featuring original bonuses, amazing physics, incredible 3D graphics and more. Break away from your expectations!";
fDesc[15] = "puzzles in order to advance, and follow the story of two anthropology professors who are investigating mysterious documents and evidences of an ancient world.";
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 = '...';
}
}