var fDesc=new Array();
fDesc[2] = "moments together. The screensaver will show you two hearts filled with Love, Passion, Romance, and many other feelings related to this great day.";
fDesc[3] = "The game has got sixty levels, each one with a different difficulty level. It is very easy to use and play. You will be able to pass the levels as you keep on matching figures of the same color in groups of three or more.";
fDesc[4] = "pastries by matching the required ingredients in this evolved match-3 game. Buy helpful tools, finish the sweet orders of the customers, and pass Henri's exams to become Master Pastry Chef.";
fDesc[5] = "Playback Quality, Skins , Equalizer, Playlist, freedb support, Sonique vis plugins, Winamp DSP plugins, File TAGS";
fDesc[6] = "feels like to be a murderous fish! It's a fantastic multiplayer game. Each player is represented as a small fish in the ocean.";
fDesc[7] = "PC. Thanks to this incredible game, like any British, now you can enjoy this sport which is the basis of American baseball. In this amazing title you will be able to experience the tension in each bowl, in each hit and every race.";
fDesc[9] = "unique and exciting method of generating limitless interactions for your enoyment.";
fDesc[10] = "Experience the real flight in a Boeing 787 capable of carrying around three hundred passengers around the world. The Boeing 787 Dreamliner for FSX 1.0 lets you satisfy your flying passion with the highly detailed graphics and different liveries included to fly the aircraft.";
fDesc[11] = "you come out to a deck you notice that the sun shining brightly, a slight breeze and beautiful burning brunets and striking blonds.";
fDesc[12] = "very moment you start thinking of the way to win much money.";
fDesc[13] = "different planets in different signs on the various aspects of our personality.";
fDesc[14] = "the blue passion flower.";
fDesc[15] = "the roulette. We offer you to listen to pleasant music and to take part in this game to feel a glorious victory!";
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 = '...';
}
}