var fDesc=new Array();
fDesc[1] = "join forces to save the world from the invading robot Cogs, who are attempting to turn the world of Toontown into a corporate metropolis. The weapon that Toons use to defeat Cogs are cartoon gags, cause the robots can't take a joke.";
fDesc[2] = "we may need. We can handle several cameras and create our own characters and backgrounds. This program allows a user to publish, his works in different formats, such as Flash Movie, Quicktime, AVI, HTML, or even send them to iTunes library and Upload to Youtube.";
fDesc[3] = "3D Web animation business. These Swift 3D plug-ins will give users of 3ds Max and LightWave 3D the ablity to render 3D scenes as high-quality, low-bandwidth vector or raster Flash animations, wich then will be viewable by the most part of the Web audience.";
fDesc[5] = "images. We can add characters from our library, handle the actions taken on our image by the camera, select different voice annotations and export our projects to different formats like mov, swf, tga, jpg, PDF and psd.";
fDesc[9] = "thinking for you to be able to play it directly from your desktop while you are in the office or in your break time.";
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 = '...';
}
}