var fDesc=new Array();
fDesc[1] = "including licensed cars of various types from NASCAR to Formula 1 and normal sports cars. There are also many different tracks, many different options to choose from and even the ability to make your own cars and tracks.";
fDesc[11] = "Speedway and Richmond International Raceway in single race mode. Switch to practice mode and hone your skills with track tours narrated by FOX television commentator and five-time Coca-Cola 600 winner Darrell Waltrip.";
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 = '...';
}
}