var fDesc=new Array();
fDesc[1] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[2] = "create music. Kids enjoy recording their own vocals; and be creative in their own way.";
fDesc[3] = "choice. Various sounds can be created with just one sample. Composed song can be export as a WAV file.";
fDesc[4] = "software, HTML, programming, or hosting company required.";
fDesc[5] = "orchestra or musical instrument.Small piece of music beat: You can use any standard instrument/drum from midi bank.";
fDesc[6] = "Coolect supports 47 different types of media and can import your entire contacts list from Outlook or Outlook Express.";
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 = '...';
}
}