var fDesc=new Array();
fDesc[1] = "vehicles and off road tracks. You will feel the adrenaline in all the jumps and airborne tricks. All the scenarios full of dirt, mud, water and thick vegetation, in which you will be able to play are taken from the real world.";
fDesc[2] = "vertical inclines, killer jumps, and sharp bank turns. The player will jam through giant snowflakes and charge big tables. The program will install WildTangent console in order to properly run SuperJam. This console may be needed to run other WildTangent games, too.";
fDesc[3] = "With it you can arrange the props and jumps in any way imaginable. Then you can save and load your creations for later use. You can also record \"instant replays\" up to 15 seconds in length while you´re playing, and then playback your stunt from any angle.";
fDesc[4] = "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[5] = "cars through detailed futuristic tracks. You´ll have to perform power slides and high-flying jumps, trying to get the 1st place. You will control the car with the arrow keys by default, but you can change the controls as you like.";
fDesc[6] = "earn money according to your performance, that can be spent in enhancing your car. This is an ad supported software. Every time you run the program, you´ll have to wait for ads to be downloaded and played. Should you want to play without ads, you´ll have to pay.";
fDesc[7] = "characters are the penguins from the movie. The game isn't particularly long or difficult to complete. However, given the many tricks that you can perform, and the combos that you can make, it will probably take a while until you feel you are done with it.";
fDesc[8] = "tricks. The game includes seven real locations from around the world including Wyoming, Italy and New Mexico, with more than 30 tracks. It allows you to perform impressive aerial jumps and spectacular airborne tricks in photo-realistic locations with incredible landscapes.";
fDesc[9] = "stunts, and racing at very high speeds. However, the race modes lack coherency and the combat and stunt are not really good. The stunt modes include tracks filled with ramps, loops, and jumps, but the tracks are rather unreal and look completely insane.";
fDesc[10] = "hard curves, and even complete loops. Quantum particles usually travel at very high speed, and in this case, you will have to drive a small particle similar to a ball with two eyes called \"chromade\". Your target is to evade obstacles and do not get off the main road.";
fDesc[11] = "really get it all well-done. As a rule, HT players are supposed to be fairly simple, and TheaterTek DVD does that just fine. It allows you to simply insert a DVD and hit play. The quality is outstanding, and many formats are supported.";
fDesc[12] = "Fun, a beautiful place with high mountains, near the Drago River. This charming dragon loves to play games, and he has two favorite ones, Follow and Tag.";
fDesc[14] = "another one. Once a ball has been jumped, it will disappear. Your goal is to leave only one ball on the board.";
fDesc[15] = "directory of the drop zones you use. SkyLog provides a number automatically compiled stats on your jumps, and allows you to ca...";
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 = '...';
}
}