var fDesc=new Array();
fDesc[1] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[2] = "must run a hospital with a little sense of humour. The goal of the game is clear from the first step, you must build and run a hospital, ensuring that all patients can be treated and cured of their illnesses.";
fDesc[3] = "assistants, buy medical equipment and complete the task of each level of this game. A very well made game with great moves and graphics.";
fDesc[4] = "great variety of animals with different illnesses. As the animals come to the clinic, you must register them in the receptionist desk. Then, they wait in the waiting room until you assign them to an available bed in the examining room.";
fDesc[5] = "Impersonating Charlie or Hannah, a couple of just graduated doctors, you will have to cure patients with baboonic plague, bipolarbear disorder, mother goose bumps, 3rd degree sideburns and many more. They would graphically transform as you cure them.";
fDesc[6] = "patients.";
fDesc[7] = "place. Upgrades are free for life.";
fDesc[8] = "drug tests.";
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 = '...';
}
}