var fDesc=new Array();
fDesc[1] = "fascinating and mysterious sharks. It features wonderful animations, realistic 3D graphics and great underwater scenes and sounds to let you fully enjoy the experience.";
fDesc[2] = "find the necessary definition using the main search or the alphabetical search. The program requires the Internet connection and also offers web search with the help of a built-in Google search. No illustrations or examples, but the ads by Google and the banners related to medicine and health.";
fDesc[3] = "accepted to “Caregivers International”, a company that provides healthcare and in which you’ll be working as a maternity ward nurse. You’ll have to feed, burp, bathe, change the diapers and soothe the babies.";
fDesc[4] = "one hour, or play web trial. In this game, Nana has invited us to come to her adoption center and manage it. We must look after stray animals. We must give them food, water, and keep them clean and healthy. Then we must match the animals with their perfect owner to be.";
fDesc[5] = "matches on a board). You prepare the customers orders by collecting the required ingredients from a board. Every time you make a match, the ingredients involved are collected to prepare the order.";
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 = '...';
}
}