var fDesc=new Array();
fDesc[1] = "new restaurants. Unlimited, unrestricted gameplay, 50 new story mode levels, 6 new customers, take customer reservations, train new waiters for each restaurant.";
fDesc[2] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[3] = "People keep coming for their tables. Once you get them the table, they want to order. Then, they want the food fast, and finally they want the bill! Everything has to be made fast and right; otherwise the customers will be mad and won’t tip you well.";
fDesc[5] = "take your pick, and many other cool things. Take part in the Web-contest for top players. Great 3d graphics.";
fDesc[6] = "and find hidden treasure before his rival does or he and his friends could be doomed. The game features over 40 levels of play, set in lush forests environments, glacial mountains and dark caves with cave dwelling creatures.";
fDesc[8] = "to escape to prove that he is not guilty.";
fDesc[9] = "history, it was created back in the 19th century, and like all classic games, in spite of its long years, it is always in force, and remains as challenging and entertaining game for both children and adults.";
fDesc[10] = "opportunity to explore the School of Witchcraft and Wizardry. You will be transported to a magical place where anything can happen. When you arrive to the Great Hall, where all the students get together when they are not studying, you will see a majestic fireplace.";
fDesc[11] = "the Prisoner of Azkaban. Includes shots of Harry, Ron, Hermione and many more. Get best pictures to your desktop Free!";
fDesc[13] = "works on batteries. It especially useful when your laptop battery is not new and capacity calculation is not accurate.";
fDesc[14] = "the globe. Featured here in many different pictures, poses and outfits. All large high-resolution full-screen images.";
fDesc[15] = "Potter. His name is Barry and he is nothing like his younger brother Harry.";
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 = '...';
}
}