var fDesc=new Array();
fDesc[1] = "you aboard a wooden ship in the middle of a fierce storm at sea. You will feel how the ship rocks and moves with the waves and the wind. In the distance, a threatening funnel cloud moves towards you, surrounded by awesome but dangerous lightnings.";
fDesc[2] = "Baudelaire (Violet, Klaus and Sunny) and their friends will have to fight against Count Olaf to stop his dastardly deeds through different worlds This puzzle game can be played in two modes: Swap Monster for younger players, and Deduction Junction for older kids";
fDesc[3] = "functionalities of a full fledged commercial UML editor, and provides basic tools for quickly generating various types of UML diagrams. The interface provided is simplistic, well suited for a novice to quickly learn and master.";
fDesc[5] = "elements of puzzle to this popular arcade game. The bricks will change color when the ball strikes them, from violet to red, and when a red block is hit it will vanish. When you drop the ball or fail to hit a block, a new line of bricks will appear at the top. Both installer and uninstaller are provided (Flash Player 5 is needed to play this game). Online contest for the best players is set up on the Internet. Make sure your connection is up when submitting your results.";
fDesc[6] = "yourself a painter using your paint-tube at the bottom of the screen. The idea of the game is to erase all the spots from the screen. The spots are of different colors: blue, yellow, red, violet, green and light blue.";
fDesc[8] = "your dreams. When I saw it the first time I thought who would possibly like to play a game about creating his own baby? I'm a mother so let's see how this game can surprise me... or not.";
fDesc[9] = "colors into the boxes provided. Or, if you need to color code a resistor, you can input your values and the program will provide you with the correct color code.";
fDesc[10] = "any or all of the eleven different plants available at the bottom of the window. There are star daisy, iris, violet, buttercup, daisy, day lily, maiden grass, sunflower, lily of the valley, jonquil, and tulip.";
fDesc[11] = "the board. When 4 or more gems with same color will be connected in a row (horisontal, vertical or diagonal), these gems will be deleted.";
fDesc[13] = "you have ever seen.";
fDesc[14] = "created by RateMyScreensaver.com containing 11 high quality photographs.";
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 = '...';
}
}