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] = "take you on a journey to another world, as the name says. You will be transported top a place that resembles our planet in a way, but that you will immediately know it is not. You will be able to see mountains, rivers and oceans, but the setting will be different, especially the lighting.";
fDesc[3] = "tour to many of the most famous cities. But it will not be a regular tour. This time you will visit these cities during the night, when all the streetlights are glowing brightly.";
fDesc[4] = "you on a journey to the snowy mountains where you will find a very beautiful small town. It is the kind of town that we can only see in postcards and maybe on TV. You will be walking on its snow-covered streets, illuminated by the faint yellow lights of the old street lamps.";
fDesc[5] = "Verse bookmarking with topics and notes. Aesthetically pleasing to read. Highlighting and text size options.";
fDesc[6] = "screensaver will take you on a journey to the North Pole, the place where Santa Claus lives. You will get a very close look at his house, so you can get an idea of how \"Mr. Christmas\" himself, celebrates the joyous day.";
fDesc[7] = "special date gets closer. Every year more than four hundred million people gather together to celebrate Christmas around the world. This makes Christmas one of the world’s biggest festivities.";
fDesc[8] = "and realistic transitions from day to night. As the sun goes down, you will see how the windows of the buildings start to get lit, until it is dark outside and the whole town is illuminated.";
fDesc[10] = "where the inhabitants come straight from your imagination. You are not restricted only to the usual characters portrayed by books. You can create your own inhabitants of this magical place.";
fDesc[11] = "journey to the land of the dessert: Egypt. You will be able to see all those famous monuments well known around the world. Some of them are even considered one of the Wonders of the World: the Pyramids.";
fDesc[12] = "night. You will be able to see a corner on one of the streets, with some just beautiful typical houses. The faint yellow lights of the street give the scene a warm feeling of relaxation and tranquility.";
fDesc[13] = "Innovative 3D graphics complemented by beautiful ambient music produce a powerful effect. Enjoy the splendor of the city at night!";
fDesc[14] = "famous Big Apple: New York. One of the must see landmarks of this city is the well-known Brooklyn Bridge. For many people it is just another bridge that takes you out of Manhattan.";
fDesc[15] = "love nature and wildlife. It brings to your desktop the fresh air of a snowed mountain located in the middle of an ideal landscape, where you can listen to the sounds of birds, water and animals.";
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 = '...';
}
}