var fDesc=new Array();
fDesc[1] = ", and over 200 more available free from the website. You can even add your own pictures. The site also has free-to-enter coloring competitions.";
fDesc[2] = "colors by a brush stroke; the program recognizes the object's border itself and tailors the new color to the grayscale tones of image.";
fDesc[3] = "the world of colors.";
fDesc[4] = "Pictures can be saved to disk, opened from disk and printed in full color to show friends and family!";
fDesc[6] = "figures to color. On the program's main window, you will be able to select different images and colors to paint them. The program can be used by children of all ages.";
fDesc[7] = "artistic skills. They will spend their time learning and coloring pictures as they please, or following Agil’s picture model. The application is so easy to use and intuitive, that even young kids will start using it right away.";
fDesc[9] = "playful activity for their free time, coloring pictures is a good chance to encourage artistic expression and creativity in kids.";
fDesc[10] = "dolphins and will delight in coloring, drawing and creating their own works of art. Easy and fun to use yet rich in features.";
fDesc[11] = "colors and 30 additional colors. A child and a grown-up can paint together. Kids can even color pictures from their album.";
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 = '...';
}
}