var fDesc=new Array();
fDesc[1] = "what they want. You must cook and prepare everything they want so as to be paid. When you got money enough you'll be able to buy new machines that will increase the number of items in your menu. This will complicate the task but you'll be able to earn more money.";
fDesc[2] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[3] = "and connect the left side of the playfield to the right side in order to connect flames to rockets and make them explode and disappear from the board, thus adding new ones.";
fDesc[4] = "with your friends and family on your home DVD player. Add comments and music too! A great way to save your memories.";
fDesc[5] = "robots. If they touch you, you die. Your only weapon are bombs that you can leave behind. When they explode, they destroy everything in the near: walls, robots... or yourself, so be sure to be far from the explosions.";
fDesc[6] = "collect antique artifacts for the Titanic Museum. The player needs to dive into 17 ship locations for clues that are deeply hidden but will lead you to the ultimate artifact: The Crown Jewels!";
fDesc[7] = "when pressing the right mouse button on file of supported types you'll see the context menu, containing video.";
fDesc[8] = "processing software like Photoshop that make performing the most basic image editing tasks a headache. Get Advanced Batch Converter!";
fDesc[9] = "users to easily reorder, duplicate, or append frames to animated cursors. Images can be modified by drawing tools and filters.";
fDesc[10] = "customers, loading their cars with the products they need, getting commissions according to the load. It is a game that requires speed and skills to combine shapes and colors.";
fDesc[11] = "create cursors and supports animated ANI cursors. It has a support for alpha channel and can created animated GIF. Toolbar images can also be created using this software.";
fDesc[12] = "and in other applications. This is a program with which you can create, edit and convert animated cursor files (.ani). With this tool, you can create cursors of any size.";
fDesc[15] = "image files stored on your computer and will let you view them one per one. By clicking on a folder from the program's main window, you will get access to all pictures on that folder.";
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 = '...';
}
}