var fDesc=new Array();
fDesc[1] = "pooches, give them a nice hairdo and make them look like award winning beauties. Pamper spoiled, impatient siamese cats and snobby poodles. Unlock new pet breeds and make everything go perfect by buying decorations and upgrades.";
fDesc[2] = "given photo. You can apply foundation, lipstick, lip liner, eye shadow, eye liner, brow mascara and blush to a copy of that image, placed in a window on the right. The program can apply some predefined makeovers, such as natural, day, evening, sultry, beach, goth and more.";
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 = '...';
}
}