var fDesc=new Array();
fDesc[1] = "Plot: This is a game for teenagers, and it has a comics aesthetics. You will find a group of four friends, Zack, Carrie, Jennifer and Andy, all teens, with different styles (the nerd, the cheerleader, the bro and the goth chick ).";
fDesc[4] = "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[5] = "to help the chicken escape a mad scientist Dr. Kajiya, while enjoying high quality animated graphics and cool music all the way.";
fDesc[8] = "out the \"background browse\", could allow \"click wheel\" action to take the place of \"Ctrl+click the left button\" action.";
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 = '...';
}
}