var fDesc=new Array();
fDesc[1] = "and 2 great Australian tracks. The tracks are beautifully modeled and the cars look good too. It is free so every racing fan should check it out.";
fDesc[2] = "pictures featuring the faces of you and your friends. This incredible program comes with over 150 awesome background templates to get you started and includes tools for creating your own custom templates from photos of your favorite celebrities, sports heroes, or magazine covers.";
fDesc[3] = "helicopters...it's the sound of whirring hard drives, hyperstimulated brains, and involuntary muscle twitches. And all due to the excitement over the release of Turok 2: Seeds of Evil for the PC. People all over the US are playing and talking about the deathmatching, the weapons, the enemies, the fear!";
fDesc[4] = "superior playability. This demo allows you to race on two different tracks, with two different cars. The first car is a BMW 320Si and a Ford Mustang GTR muscle car.";
fDesc[5] = "land where words have yet to be invented. Test your word skills in 25 unique game types and watch your tower soar. Succeed, and your tower will reach heights never imagined.";
fDesc[7] = "free from stress and physical disorders. Finding a good gym and a good instructor is not the only way to stay fit if we have our own workout equipments and a very reliable pocket instructor in applications such as this great application.";
fDesc[8] = "limits and achieve the body you desire. Lose fat and increase muscle mass. Every day you wait is a day of lost progress!";
fDesc[9] = "according to the fitness programs selected. This program offers many features to keep you healthy and in good shape. Open Fitness works on Linux, Mac OS X and Windows platforms.";
fDesc[10] = "works out two of these skills, for double the mental muscle building. There are 15 different Brain Builder games so you won’t get bored, that's for sure. Try this game for 60 minutes before you buy the licensed version.";
fDesc[11] = "You’ll be able to choose from 8 chix and take them for a ride round international circuits ranging from the sweaty jungles of the Amazon Basin to the streetwise cool of night-time San Francisco.";
fDesc[12] = "hottest chick around by winning every race within the Hot Chix championship. If you don't fancy your chances in the championship just yet, you can practice the tracks using the time trial mode.";
fDesc[14] = "And one of the best periods to start training the memory is childhood. That's why if you have children, I recommend you to download this free game called AniMatch, where your kids will use their memory skills to match pictures.";
fDesc[15] = "different sports and for over 19 different muscle groups from a database of over 130 different stretching exercises.";
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 = '...';
}
}