var fDesc=new Array();
fDesc[1] = "they are automatically removed from the board. In order to get to the next level you will have to make a certain number of matches.";
fDesc[2] = "clean a mess, first find it and then click on it with the mouse pointer. The second activity is to put the kids in bed before the parents come back home. To put a kid in bed click on it and then click on the bed.";
fDesc[3] = "Magic Crystals to form a Scepter, an artifact that will give you super magic powers. To form a Magic Crystal, you´ll have to collect runes of the same kind.";
fDesc[4] = "one coconut palm, and he occupies his time with various activities, like fishing, lighting a fire and cooking food, and many other things.";
fDesc[5] = "any custom boxes that you want. You can create any type of box from pizza boxes to bottle boxes or even medicine boxes. It is very easy to use, and offers fully customizable cover design.";
fDesc[6] = "Its simplicity may be misleading because in addition to its playing and recording features, it offers a huge amount of different sounds, from Accordion to Xylophone.";
fDesc[7] = "game. You will be controlling Emma, a nanny that will take care of the house and kids of a celebrity family, while keeping the paparazzi away. She will have to watch a baby, clean up the house and launder the clothes before the parents come home.";
fDesc[8] = "unique and exciting method of generating limitless interactions for your enoyment.";
fDesc[9] = "options like adding different shapes, inserting images, text and various layouts. Also, users can fine-tune their printer for better results.";
fDesc[10] = "prices like teddy bears as in a carnival and upload your power, speed and mass. The game will show you the efficiency of your shots, become an expert and knock lots of bottles in one shot.";
fDesc[12] = "Drink it slowly and enjoy the fresh taste of your virtual Heineken. Right click it to get an extended menu!";
fDesc[14] = "Arts, Night of the Hermit can run on both DOS and Windows systems.";
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 = '...';
}
}