var fDesc=new Array();
fDesc[1] = "The figures vary in type, so you must find out the longest chain for the highest score possible. The game also features a nice background story that makes it a little bit more professional. This is a solid puzzle game that is refreshing and easy to play.";
fDesc[2] = "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[3] = "Conquistadores shows you the way to the Sun Temples. Does the gold of El Dorado really exist or is it nothing but a myth?";
fDesc[4] = "your brain to work. Solve over 225 unique puzzles on your way to gold, gems and treasure hunting glory!";
fDesc[5] = "developers of the Cossacks series. It is published by CDV. The game action is developed between the fifteenth and nineteenth centuries in the Americas.";
fDesc[6] = "civilization to find the lost city of Eldorado, the city that is hidden in the Amazon jungles.";
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 = '...';
}
}