var fDesc=new Array();
fDesc[1] = "employed for a TV show production. This fun and easy-to-play game turns you into a very busy waitress trying to keep the customers happy, and that could get more difficult than it sounds. Try this game for 60 minutes before you buy the licensed version.";
fDesc[2] = "off for fun with Airport Mania! Land planes, unload, and return to the skies in 8 amusing airports. Avoid delays, keep your planes in good repair, and get to the gate on time to keep things running smoothly.";
fDesc[3] = "Sell gems and jewelry to smiling customers, but watch out--keep them waiting too long and they'll start to grumble. Special tokens allow you to upgrade your shop with more jewelry and customer treats.";
fDesc[4] = "Thunderbird, Gmail, MSN Messenger, Hotmal, MSN Groups, AIM Mail, AOL Mail, Yahoo! Groups, etc. The icons are organized by categories: Miscellaneous, Happy, Sad, Love, Gold Sampler, Communication, Signatures, Famous Quotes, Love Quotes, Compliments, and Proverbs.";
fDesc[5] = "allow you to feel like one. You will be able to see banknotes everywhere around your screen. The notes are very realistic and you can almost \"smell the money\".";
fDesc[6] = "happy since it’s all about camping. To be precise, you won’t be exactly camping. Instead of that, you’ll be able to build the camping site of your dreams. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[7] = "able to backup, restore, rollback and reinstall DirectX. When you start DHU, the program will open a tabbed interface. The \"General\" tab will display the operating system´s core, name and version, the current user and the DirectX version.";
fDesc[8] = "pony that would never grow up. You can choose it between the following varieties: Dartmoor (brown w/ black hair), Chincoteague (white w/brown patches), Dales (black), Welsh Mountain (white), Connemara or Fell.";
fDesc[9] = "this love story in which you will take a part as Cupid's assistant. Your job is to create a happy ending for their love story. You play some games for whishes and then use those wishes to create the love gardens.";
fDesc[10] = "guests happy. But, remember that guests are the life of any party, and if your guests aren't happy then it doesn't matter if the event was carefully planned, it will be a total disaster. That's why JoJo needs your help, to make her guests happy, so then the party will be a success.";
fDesc[11] = "decide to run John Doe's. To earn money we must serve customers and satisfy all their needs as fast as possible to get the best possible tips.";
fDesc[12] = ", a cottage house, cows and horse are grazing, birds are singing, chickens are walking - all these help you to relax and forget about problems.";
fDesc[13] = "is a young woman in the babysitting business who’s obviously not afraid of monsters, since the special thing of her business is that she takes care of baby monsters instead of baby humans.";
fDesc[14] = "their corresponding ratio of any note duration. The game features poor graphics and sound effects, but it is really easy to play.";
fDesc[15] = "that care about you, as well as the people that you care for. Now you can just send this screen saver to them, and make sure they receive your best wishes for the coming year. The screen saver is very simple. It will not show you fancy animations or beautiful landscapes.";
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 = '...';
}
}