var fDesc=new Array();
fDesc[1] = "ancient manuscript proclaims: “Align the relics you can see, across or down in groups of three. Turn all squares to solid gold, the path to riches will soon unfold”, and that’s pretty much what you have to do in the game.";
fDesc[4] = "case is really complicated, and there are five victims, and Victoria has no real clues. Totally stuck in the case she decides to visit her family for Christmas in an attempt to relax and finds out that her grand father, a famous private detectuve in his time, had a very similar case.";
fDesc[8] = "really change your point of view about beauty. It will allow you to have one of the most beautiful women in the world right on your screen Victoria Beckham is well known, not only for her famous husband, the soccer player. She is now famous for herself.";
fDesc[9] = "boundless ocean. Captivating music together with a truly colorful setting will make your trip unforgettable.";
fDesc[12] = "occasion. You will be able to create clothing sets for each destination,weather and temperature beforehand";
fDesc[14] = "open-source software utility for describing different elements present in an image using XML. With this tool you will be able to create your own categories of images, classify your annotations, and add as many of them as you need to more than 45 types of images.";
fDesc[15] = "Navy. Armed with cannons she fearlessly ploughs through rough waters. Outstanding music and truly colorful graphics will make your trip unforgettable.";
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 = '...';
}
}