var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[2] = "flash based massively multiplayer online role-playing game (MMORPG). Its concept is mainly that of a tactical game featuring wild humor but with a unique style if we compare it with other MMORPGs.";
fDesc[3] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[4] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[5] = "creatures and spun a web over their kingdom. You must solve 60 puzzles to break the spell and return the land to sunshine.";
fDesc[6] = "power and raise Atlantis, the submerged continent. This game is a great challenge of speed and logic. Graphics and moves of this game are well done and the game is very entertaining.";
fDesc[7] = "One Klondike Pyramid, FreeCell, Spider solitaire, Flower Garden, Diplomat , Spider solitaire Two Suits, Eighteens, Forty Thieves, Grandfather's Clock, Royal Rendezvous, Spider, Suit, and others.";
fDesc[8] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[9] = "published by Atari. Inspired by the writings of Andrzej Sapkow, the Polish writer, The Witcher is a title in which a warrior will face some monstrous beings known as the \"werewolves\".";
fDesc[10] = "games without paying any subscription. QQ Games is an official plugin for Aol Instant Messenger and it offers a wide collection of online casual games that are totally multiplayer and free.";
fDesc[11] = "plot, many levels to play, good gameplay and good-quality graphics. Magic Crystals is a very good option for leisure time, since it is entertaining and easy to play, and most importantly, it is freeware.";
fDesc[12] = "at the different stages, desserts, woods, jungle, etc... All you have to do is find them and jump over their bubbles in order to guide them to the exit door of the stage.";
fDesc[13] = "quite simple, following the classic mahjong rules. The objective is to remove from the board as many tiles as you can, by connecting matching tiles which have any of its side edges free.";
fDesc[14] = "several areas of our skills: memory, language, logic and intuition, with a background story that captivates from the very beginning. The games are basically puzzles of all kinds, that require a mental efforts and entertain at the same time.";
fDesc[15] = "Casual abstract images combined from casual pictures of casual color.";
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 = '...';
}
}