var fDesc=new Array();
fDesc[1] = "creation process. Real-time playback of your edits, nondestructive editing, and unlimited undo/redo make tweaking your videos a snap, while dockable windows and customizable keyboard commands let you personalize the interface for your work style.";
fDesc[2] = "choose from a great variety of solitaire games, from the challenging Scorpion to a relaxing game such as classic solitaire.";
fDesc[3] = "after Oahu. You can drive through the streets and hills on over 125 vehicles licensed for the game. With good challenges and a solid multi-player support this game is a fine choice for car junkies.";
fDesc[4] = "way through the game into the end. Magic Balls 3.5 combines great graphics and lighting effects to create a 3D visual effect in the balls, so your experience becomes richer.";
fDesc[5] = "playlists or download and stream music with the Yahoo! Music Unlimited subscription service. Besides, you can create your own radio stations based on your taste by rating different songs and artists, and share it with your friends in Yahoo Messenger.";
fDesc[6] = "to 28 different weapons to choose from, travelling from the sunny South to the frozen North across the whole country, and on a safari in Africa. We can play online against others members in any tournament already created or we can create our own for them to join in.";
fDesc[7] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[8] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[9] = "makes it better than other editors in its group. It is supported on Windows family operating systems. It supports many programming languages to serve the needs of programmers.";
fDesc[10] = "player into a world of mythical ancients creatures and monsters which were safely kept inside Pandora's Box, now they've unwittingly been unlocked by Deckard.";
fDesc[11] = "Unlimited Fun. - No Download Fees Ever. - Billions of Songs and Movies Available.";
fDesc[12] = "tough challenges.";
fDesc[13] = ", APE. This easy to use software is very fast. You don’t have to read any manuals or any big help files to use this. All you do is click on one button and your CD will be copied. This software can also convert WAV files to MP3, WAV, WMA, APE, VQF, OGG, AAC, MP4 files.";
fDesc[14] = ", the interface is not that good, as it is in an old style. But everything else is like Partition Magic. As a whole, this program is a basic partitioning tool good for regular use. But it lacks more advanced features like a boot manager, for example.";
fDesc[15] = "and 1 new bike to be used in TDU. The cars range from exotic supercars to loud American muscle cars. A great pack for all car lovers out there.";
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 = '...';
}
}