var fDesc=new Array();
fDesc[1] = "same fun from all the worms series is still there, all the way to the multi-player. However, some cameras are tricky and annoying. It will just be a matter of preference from the player to choose 2D or 3D.";
fDesc[2] = "through their own skills with the mouse by bashing gnome characters and similar others, back into the holes they pop out from in their cartoon garden.";
fDesc[3] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[4] = "project templates, images, fonts and sentiments. The software features more than 295,000 spectacular art images and graphics. It gives access to Million Image Club Access for one Year.";
fDesc[5] = "part of his team on a World Tour, against Bam Margera, and help him to turn the virtual world into a skate park. In Tony Hawk’s Underground 2 players can choose to take on the role of one of 20 unique characters or play themselves.";
fDesc[7] = "lot of strategies to avoid the insects from eating and destroying your flowers. The game has got some excellent video and sound graphics and nice effects too.";
fDesc[8] = "dream - all with the click of a mouse. Create dynamic works of art using a variety of virtual media — from oil paints and collage to rainbows, trees and more. Digital photos have never been more fun! With Kid Pix® Deluxe 4, you can create unique works of art using your very own photos.";
fDesc[9] = "of puzzling and relaxing fun. Play without time pressure in Relax mode. Solve brain-twisting puzzles in Puzzle mode. Match three colored crates and watch 'em explode in Classic mode. Wacky dances, exotic landscapes, lively tango music make Xango Tango Deluxe fun for everybody!";
fDesc[10] = "Jack-O’Lanterns are sure to light up your holiday! Scary yet lovable pumpkins appear on your screen to celebrate as well as decorate for the greatest candy-eating day of the year.";
fDesc[11] = "the wild and wacky platform shooter that everybody talks about, and was a big hit when it was first released.";
fDesc[12] = "creatures from their shark captors. A wacky puzzle game that combines puzzles, action and strategy in an unforgettable game.";
fDesc[14] = "traveling towards you and have collected Sports Balls and Satellites throughout the Earth to bring you to a demise. A fun side scroller!";
fDesc[15] = "takes a lot of concentration and you could end up biting your lips from excitement.";
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 = '...';
}
}