var fDesc=new Array();
fDesc[1] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[2] = "expansion to Crysis. This title is a standalone game and does not need the previous game to be installed to run. Apparently, this new title is not a typical expansion, it brings a lot of changes from its predecessor and it shows the story on the other side of the Island.";
fDesc[3] = "mode, i.e the same history and strategy in real time. The big difference that shows the wisdom of the people of Microsoft and Ensemble study is that it adds 5 new civilizations and substantially improves the artificial intelligence.";
fDesc[4] = "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[5] = "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[6] = "dinner, do a festival, have an appointment, enjoy a bowling alley or go to the music store. Also, they will have their own cars, which they can choose among various types and will serve them to go to any of the places named and also to work.";
fDesc[7] = "to negotiate business of all types, that range from museums to restaurants, including products stores and merchandising. With the new expansion new objects are included as well as styles for the decoration of places and needs of the Sims.";
fDesc[8] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
fDesc[9] = "amazing game in every sense, by size, quality, entertainment and, above all, by new units including: the titans a powerful mole capable of massive destruction.";
fDesc[10] = "The Sims 2. The game adds new content and features for the Sims. It also focuses on apartment life, allowing you to live in an apartment, and even the chance of having roommates. The expansion is perfect for The Sims fans.";
fDesc[11] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[12] = "first stand-alone expansion pack launched for the fifth installment of the game. This expansion should not be missed by any fan of this amazing strategy saga.";
fDesc[13] = "Games, Sid Meier's Civilization IV: Beyond the Sword offers the widest array of developments in the history of the Civilization franchise.";
fDesc[14] = "strategy game. Among other developments, this expansion includes 6 new civilizations, 10 new leaders of civilization, 8 new scenarios and new units and buildings.";
fDesc[15] = "expansion bases itself in the struggle for the British isles, and sets several kingdoms waging war between them. With all the great things that make Total War great and some more, this is an expansion to have.";
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 = '...';
}
}