var fDesc=new Array();
fDesc[1] = "trouble. Like most Rockstar games, you control your character using the third-person perspective, and you can get on vehicles like Bicycles, Skates, etc.";
fDesc[2] = "shape to win an upcoming tug-of-war competition. You´ll have to serve the customers of your fitness center, and will have to conquer different goals in order to get to the next level.";
fDesc[3] = "and shoes. It's perfect to plan working hours, keep track of scheduled appointments and what service bay technicians will be using.";
fDesc[4] = "database of transport facilities and storing information about clients. Save time and enhance efficiency with Transport Rentals!";
fDesc[5] = "additional capability to share data in real time over the network.";
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 = '...';
}
}