var fDesc=new Array();
fDesc[1] = "favorite Instant Messenger, or when you´re playing with an online game. MorphVOXTM Pro will change your voice, making you sound like different persons or even animals, just for fun.";
fDesc[2] = "participate. You can customize your cars and buy new ones. With several different events and game modes, this game is a car-junkie's dream.";
fDesc[4] = "stores you want to include in your mall, from over 40 possibilities. You can include several levels, restaurants, arcades. Whichever you think your customers will like.";
fDesc[5] = "from 3 European cities: London, Paris or Berlin. Playing in the Scenario Mode you will need to face a series of different challenges. In the Box mode, you´ll just have to build your mall.";
fDesc[10] = "they have ideas and plans for the school, which openly differ from those of the school student president. We must help Sasha, Jade, Yasmin and Cloe to make their way to a united school. Play food fight, shop fashion outfits, train pets, take pictures, print them, etc.";
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 = '...';
}
}