var fDesc=new Array();
fDesc[1] = "Resident Evil is a very successful saga of video games (and movies too). I played Resident Evil 1, 2 and 3 and I really like them. The game was evolving with every release, improving graphics, sound and gameplay.";
fDesc[2] = "released from Ubisoft (the game's publisher). It enhaces the texture quality, lightning and fog, in sum the overall graphic detail level is much better.";
fDesc[3] = "seated in your system tray. If you want to get the latest weather conditions, local time, temperature or time in a different place of the world, all you’ll need to do is to take a look at the bottom-right corner of your screen";
fDesc[4] = "weather on-line to see how you need to get dressed, if you need to take an umbrella, etc. AccuWeather.com summarizes the information on the website and puts that data into your web browser, the application you spend most of your time on.";
fDesc[5] = "You, as a player, have to help her succeed in all kind of adventures, climbing, digging, and floating to reach their beloved creatures.";
fDesc[6] = "you will find different challenges with different types of trees. Follow your task to complete it before the time is up or the game will be over.";
fDesc[7] = ", forecasts and different skins.";
fDesc[8] = "a single computer or hundred of computers simultaneously. Traveling into the past and back, was never easier.";
fDesc[12] = "working very hard to finish all the Christmas gifts on time. His house is modest but beautiful. There must be a lot of magical activity inside, since you will be able to see smoke coming out of the chimney.";
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 = '...';
}
}