var fDesc=new Array();
fDesc[1] = ", therefore Infinity Ward released patch 1.6. The patch includes 4 new and excellent multi-player maps, along with new features for filtering and several bug fixes.";
fDesc[2] = "will be able to select among cats, dogs, birds, tropical fish and hamsters. But there are not only animals in this expansion: it also brings new objects as houses for dog, cages for parrots, pictures and more.";
fDesc[3] = "fourth of a series of action games on which an anime saga is also based. The story focuses on the characters of Dante and Trish and their quest to confront the demon called Mundus.";
fDesc[4] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[5] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[6] = "game you play a New York-based wedding planner who must help the two different couples prepare everything for their big day.";
fDesc[7] = "a completely new world, with new rules regarding the schools of magic. It is also the first to depart from the traditional mechanics of the series";
fDesc[8] = "more than 40 U.S.cities from coast to coast, Canada and Mexico. Your goal is to build a fleet, deliver the goods to make money, and finally defeat the competition.";
fDesc[9] = "aspect of it. You can build fences and micromanage towers, and also create facilities to motivate the prisoners such as recreation areas like libraries, gyms, hospitals, industries,etc. to keep them occupied.";
fDesc[10] = "action games on which an anime saga is also based. The story focuses on the characters of Dante and Trish and their quest to confront the demon called Mundus.";
fDesc[11] = "American-movies-like chases. Carbon continues the story where the previous release, Most Wanted, stopped. In general it keeps the good graphics and great selection of cars of the previous versions, though not bringing too many new features to the series.";
fDesc[12] = "is a racing mode in which the reward is the defeated player's car. The 4.5 patch for Need For Speed High Stakes is for integration with EA Racing's new NPS2 gaming servers for High Stakes, among other things.";
fDesc[13] = "Person Shooter) category in which weapons are used, in this case are futuristic weapons. Following the outline of the saga two teams are placed on a battlefield with certain objectives to be met in order to prevail on the opposing team.";
fDesc[14] = "launched in North America. This fourth release of the popular racing game introduces various new classes of gameplay: High Stakes, Getaway and Career";
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 = '...';
}
}