var fDesc=new Array();
fDesc[1] = "environment. Plot: Your mission is simple: to complete the journey and bring your load before the time runs out.";
fDesc[2] = "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[3] = "to do the driving while you count your cash. You're not only a trucker, you're a tycoon.";
fDesc[4] = "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[5] = "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[6] = "and you must haul cargo across the entire United States. Your goal is to make money, dominate the roads and eliminate the competition.";
fDesc[7] = "made to drive the way to success. You Speed, Power, Performance and your attitude will determine if you are worth it or not. The package has thirty cars designed on the original hot wheels specifications.";
fDesc[8] = "have features like 100 floats/wheels/ski, 300 wheel/wheel ski etc. There are different kinds of interiors such as passengers, cargo and skydiver. A paint kit is available along with fourteen different liveries.";
fDesc[10] = "facilitating the users. It integrates programs right from MEandYOU, N_Interp, YOUandME, Transits, down to Keywords, a versatile application for helping the user become better at general astrological analysis.";
fDesc[11] = "further in the game. The game has a number of levels with increasing difficulty. The graphics are 3D environment. There is a set of wheels, with gems on them, which should be rotated in the right position so that matches to be created and difficult puzzles be solved.";
fDesc[12] = "Direct printing on boards. print on the French, Portuguese, Spanish, English, Swiss,Belgium, austria Slips. 8 free wheels on the shareware version";
fDesc[13] = "compatibility of the couple, whose charts are being compared. The tool is designed for calculating natal synastry, Davidson relationships and composite charts along with provision to display single and dual chart-wheels, cosmodynes and lots more.";
fDesc[14] = "comes pre-loaded with a dozen great web sites for children. Parents can add as many new web sites as they wish.";
fDesc[15] = "eleminate the other derby contestants.";
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 = '...';
}
}