var fDesc=new Array();
fDesc[1] = "show you all the well-known beauties of autumn. That wonderful season of the year when nature is getting ready to relax and wait during the cold winter months. In this season, you will see nature changing colors right in front of your eyes.";
fDesc[2] = ", Flower Garden, FreeCell, Klondike, Nestor, Yukon.";
fDesc[3] = "they travel. Quad Missile - Four small missiles release at a distance, then home in. Carpet Bomb - Difficult to miss at a distance, very powerful with line-of-sight.";
fDesc[4] = "adjacent tiles in order to set matches of three or more identical tiles, fill the entire grid before the time limit ends to qualify for the next levels.";
fDesc[5] = "the previous editions of the series, this game is pretty complex in terms of rules. You must explore crime scenes in order to find clues and reveal suspects. The beginning point is the crime report available at Scotland Yard.";
fDesc[6] = "game twice as each Solitaire has more than 9 trillion (9,999,999,999,999) possibilities.";
fDesc[7] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[8] = "watch how the leaves of the trees start changing colors until they finally begin falling. The screensaver will show you several paintings displaying gorgeous autumn scenes with animated characters.";
fDesc[9] = "Cards Deluxe, developed by Zylom Games, comprises a selection of classic and favorite card games, new games and variations of old ones. You can play and enjoy, for example, Vertical, Klondike, Freecell, Yukon, Pharaoh’s solitaire, Fifteens, Carpet and Pyramid, among others.";
fDesc[10] = "FreeCell, Pyramid, Golf, Busy Aces, Canfield, Forty Thieves, Four Seasons, Carpet, Flower Garden, Rouge et Noir, Monte Carlo... and original solitaires that you cannot find elsewhere.";
fDesc[11] = "is a young woman in the babysitting business who’s obviously not afraid of monsters, since the special thing of her business is that she takes care of baby monsters instead of baby humans.";
fDesc[12] = "companion, the Genie. The mission is to rescue Princess Jasmine from the hands of the evil sorcerer Jafar. As you start the game, by speeding on the magic carpet on your mission to save the Princess, you will fly through the deserts.";
fDesc[13] = "a virtual and gothic fireplace, with a beautiful wood armchair and carpet in red and gold colors. While looking at the fireplace you can feel the coziness and comfort of the warm heat irradiated from the burning wood of the fireplace.";
fDesc[14] = "with MS Office for sales lead generation and lead conversion. Highly Suitable for Catalog Driven Business (e.g. Apparel, Jewelry, Textile...";
fDesc[15] = "category driven product catalog with highly customizable styles, user defined language and powerful features.";
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 = '...';
}
}