var fDesc=new Array();
fDesc[1] = "watch TV on your computer. You will be able to watch new movies, old movies, comedy movies, anime, TV series, TV shows and many more online programs.";
fDesc[2] = "through its channels inside Zango's website. To keep it free, it works as adware, showing you a daily amount of publicity.";
fDesc[3] = "manage to become the best Dunder Mifflin Paper Company salesperson while you maneuver through the office, playing pranks on your rivals to slow them down, earning points by helping out your co-workers, and avoiding to get distracted by the office visitors.";
fDesc[4] = "provides voice-changing capabilities of various personalities, right from a cool dude down to a matured elderly lady. This tool can be used for adding fun and comedy to instant messaging and voice-overs.";
fDesc[7] = "titles, icons, speed and progress messages. It can also disable your screensaver.";
fDesc[10] = "When you install this program, you'll have access to an entire library of videos and audio files. The program runs in a small video jukebox where you will be able to watch movies, news, games, sports, comedy, music video clips and more.";
fDesc[11] = "This means that you have to search for certain items on different locations, according to a list provided that dictates what to look for. What you have to do is to help Larry, Moe and Curly to find a hidden treasure and buy the building before they get evicted.";
fDesc[12] = "7,300,000+ unique words, phrases and images in mind-map style associations reveal ideas that escape \"linear\" thinking.";
fDesc[15] = "panda legs and precise, but still clumsy kung fu moves present the peak of animation comedy.";
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 = '...';
}
}