var fDesc=new Array();
fDesc[1] = "background of the game is such that, you are the head of an international team of skilled explorers who are on a classified mission. In this mission you are provided with 76 challenging levels where you have to unfold the secrets of the long lost fabled continent.";
fDesc[2] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[3] = "make matching groups of three or more and turn the board to gold in more than 120 brain-bending levels. Show off your puzzle prowess and create perpetual cascades by creating matches while new game pieces are falling into place.";
fDesc[4] = "matching groups of three or more and turn the board to gold in more than 120 brain-bending levels. Create perpetual cascades by creating matches while new game pieces are falling into place.";
fDesc[5] = "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[6] = "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[8] = "swapping colorful pieces to create matching groups of three or more. Stunning artwork brings the elements of this legendary tale to life while strategic puzzling fun provides hours of brain-bending excitement.";
fDesc[9] = "of puzzling and relaxing fun. Play without time pressure in Relax mode. Solve brain-twisting puzzles in Puzzle mode. Match three colored crates and watch 'em explode in Classic mode. Wacky dances, exotic landscapes, lively tango music make Xango Tango Deluxe fun for everybody!";
fDesc[10] = "rearranges the playing field to direct pieces as they fall, grouping pieces of similar colors to eliminate them and advance to the next level.";
fDesc[11] = "save them.Over 160 levels full of action and creative puzzles await you in a world full of ladybugs and explosive apples.";
fDesc[12] = "pictures. 9 puzzling variations and 11 sizes to choose from. Includes over a thousand pictures, plus make more puzzles from YOUR photos.";
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 = '...';
}
}