var fDesc=new Array();
fDesc[1] = "of flames and burning wood! You can now have the warmth, ambiance and romance of a fireplace - wherever and whenever you want.";
fDesc[3] = "sight with all kinds of colors. You will be able to see end enjoy very high quality images of some of the most gorgeous flowers in the world.";
fDesc[4] = "remedies, a foot reflexology chart and important safety tips and information.";
fDesc[6] = "flowers blossom on your screen. Take pleasure in beauty of a smart summer bouquet. Feel aroma of summer!";
fDesc[7] = "autumn forest, brightly colored and calm.";
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 = '...';
}
}