var fDesc=new Array();
fDesc[1] = "changes in the climate, which affect your Sims dramatically. The Four Seasons are included in the game: Spring, Summer, Autumn and Winter. Each station and its respective climatology can affect radically the needs, aspirations, desires and fears of your Sims.";
fDesc[2] = "the visual effects aren't very good. The backgrounds are much more brighter and colorful than the tiles. It has a very smooth palying.";
fDesc[3] = "caring for chickens, pigs, cows, and other animals. Visit five separate farms and sell over 25 distinct products. Work through rough seasons like intense summer heat and a cold winter freeze.";
fDesc[4] = "are rendered with Japanese style and show different seasons of the year. Swap game pieces to clear filled cells in two game modes. In the Arcade mode you must clear cells in a limited time.";
fDesc[5] = "collection features twelve popular card games including Silver Klondike, Pyramid golf, Freecell, Fourteen Out, Four Seasons, Yukon, Clanfield, Blind Alleys, and many others.";
fDesc[6] = "savvy, in eighteen businesses challenges. The whole idea of the game is to reach the summit of the corporation, with the approval of Mr. Trump. If you failed on any step of the ladder, you’ll just be fired and the game is over. You can try this game for 60 minutes.";
fDesc[7] = "You must select two matching tiles to remove them from the board, being the goal to clear the board completely. You can also select any of two “Flowers” or “Seasons” tiles, even when they are not identical.";
fDesc[8] = "Entertain with the story of ancient seasons and natural rules, power of water and nature. If you like challenge in knowledge, speed, and reflects, you will love Season Match.";
fDesc[9] = "of the four seasons, of which winter is a bonus game. When I launched the game, which was easy to install, it changed my screen resolution automatically for the best viewing and presented me with a bright, easy to navigate, interface.";
fDesc[10] = "CCWS is finally on rFactor, with the first years of the Panoz chassis. All the cars and liveries are included with this mod. One of the best mods for rFactor.";
fDesc[11] = "select any car, even the pace car, any track and any points scoring system. The utility is stable except with some mod files. This is a great utility for rFactor.";
fDesc[12] = "lucky chip to flip and get several matching chips with the same season icon. They explode, you score! Have fun!";
fDesc[13] = "change the way you are used to see the seasons. You will be able to see how the leaves start to turn brown, then red and finally yellow. After a while, the rain turns into snow, and the landscape starts getting white, covered by the snow.";
fDesc[14] = "is the fourth planet from the Sun and is known as the Red Planet due to its reddish appearance as seen from Earth.";
fDesc[15] = "the wonderful scenery of nature in its purest form. The freeze of winter, to the warmth summer, to the leaves of autumn and the new life of spring.";
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 = '...';
}
}