var fDesc=new Array();
fDesc[1] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
fDesc[2] = "you must haul cargo between 48 U.S.states, Canada and Mexico. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[3] = "more than 40 U.S.cities from coast to coast, Canada and Mexico. Your goal is to build a fleet, deliver the goods to make money, and finally defeat the competition.";
fDesc[4] = "and you must haul cargo across the entire United States. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[8] = "left mouse button to drop your fishing line and haul in as Super Fishing game is copyrighted or trademarked by its respective owner";
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 = '...';
}
}