var fDesc=new Array();
fDesc[2] = "lays on our shoulders. We must sort out a number of obstacles in our way to help them in the form of matching games and mini-games in order to gather enough points to pass to a higher level. We must arrange flowers bouquets whenever they are ordered.";
fDesc[3] = "bounces, the bigger the bang. Funnel: Trap an enemy tank in a steep valley made of bouncy dirt. Crazy Wall: It's a wall, it's an awesome weapon, and it's a little bizarre.";
fDesc[4] = "farm grow as you invest the money you earn on each activity and bonus stages. Enjoy this fun puzzle game where you will be doing farm tasks.";
fDesc[5] = "has got over thirteen different levels, each one with different objects and difficulty level. The game has got nice video graphics and good sound effects and music. It is very easy to play, all you have to do is to find the objects and click on them.";
fDesc[6] = "break the evil spell with your trusty wand. Along the way you will learn powerful incantations that will protect you from harmful spirits and help you see clearly.";
fDesc[7] = "discover the secrets of \"Cursed Valley\" before the dark curse claims you as its victim? Unique magical creatures and almost a thousand hidden objects await you in this beautifully painted hunt and seek puzzler!";
fDesc[8] = "get a well deserved rest from all the dreadful daily activities. You will be transported to a place that could be mistaken as paradise. You will find yourself in the middle of a beautiful valley somewhere in the mountains.";
fDesc[9] = "years ago. Using his magic to send the fairy people of Magic Valley into a deep sleep an evil sorcerer has disturbed the Stones of Elements.";
fDesc[10] = "rescue Santa's magic items. The game is mainly oriented for kids, since adults may find it a little bit boring and slow-paced. It features nice but not detailed graphics with appropriate music and sound effects.";
fDesc[11] = "where you can forget about traffic, stress, job and everything that prevents you from relaxing. You will find yourself in the middle of a lush green forest somewhere in the mountains, where nobody will ever disturb your peace.";
fDesc[13] = "mysterious prehistoric landscape with lots of ancient plants, a huge volcano which exhales smoke and dinosaurs enjoying the life in the valley. Good animated graphics and realistic sounds of dinosaurs’ shouts help you feel unique prehistoric atmosphere.";
fDesc[14] = "different game styles - also in multiplayer mode.";
fDesc[15] = "dinosaur epoch. Do you enjoy your desktop having beautiful and animated screensaver? Just have a look at the Animated Screensaver \"...";
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 = '...';
}
}