var fDesc=new Array();
fDesc[1] = "in Europe Be a Legend mode, which manage a single player to take him from small teams and benches to the maximum level. The graphics and atmosphere of the stadium was updated and enhanced to complement the experience of PES.";
fDesc[2] = "The Sims 2 includes plenty of new features that enhance the gameplay even more. This new version features an enhanced neighborhood editor that lets you import custom cities from Maxis' own SimCity 4, if you have it installed.";
fDesc[3] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[4] = "of all ages. This tool has a real time European City feel along with various views for the driver to ensure the 360-degree real experience with all those big trucks.";
fDesc[5] = "lot of action, easy controls and, of course, a spectacular graphics display . Plot:You will be able to shoot to new enemies.";
fDesc[6] = "or in training mode. Choose between six different players and try playing in all the four different clubs. A billiard game with great graphics and views that you can zoom in or out.";
fDesc[7] = "individually and directly. The game consists of creating Sims characters and building them a life, to satisfy their aspirations, to comply their dreams, etc.";
fDesc[8] = "keeping our animals happy, to achieve that you will need to meet their needs and hire staff to care for animals, besides buying buildings and attractions to meet the needs of your visitors.";
fDesc[9] = "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[10] = "Prix Mode, Extreme Mode, Time Trial, Training Mode and Multiplayer * All 24 riders from the 2004 Season * Race online along with 15 more players. Buy it online for a really affordable price.";
fDesc[11] = "instance, if you shoot a ball down a pocket with the Dommelsch logo, you will receive one of three kinds of jokers. These let you sabotage your opponent's balls in three different ways. For example you can make one of your opponent's ball stick firmly to the table.";
fDesc[12] = "next stage, for example, in the first stage you have get eggs from hens. To get eggs hens must eat grass, and to get grass you have to water the ground. This is the kind of tasks that you have to carry out. In later stages you have to deal with pigs, cows, and many more...";
fDesc[13] = "given the task to captain a submarine which is a part of the North-Atlantic fleet. Your orders are to patrol the seas. Every patrol mission will determine the outcome of your whole career.";
fDesc[14] = "free, unlike other games of this genre. Plot: Your mission is to eliminate highly dangerous agents of the KGB who try to sabotage the major capitals of Europe.";
fDesc[15] = "must run a hospital with a little sense of humour. The goal of the game is clear from the first step, you must build and run a hospital, ensuring that all patients can be treated and cured of their illnesses.";
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 = '...';
}
}