var fDesc=new Array();
fDesc[1] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[2] = "Mystery P.I., you've been hired by Grandma Rose to find her winning $488 Million lottery ticket. For achieving that, you´ll need to retrace Grandma's footsteps to collect clues by finding over 2200 hidden objects and solving puzzles.";
fDesc[3] = "ancient table, that are scattered around the world. Once you got all pieces, you will have the clue to find the most expensive gem: the \"World Diamond\".";
fDesc[4] = "certain items in different scenes and find them in order to progress in the game. In this case, the scenarios will be represented by different rooms in the manor. You can see your current location at any time in the game map.";
fDesc[5] = "Ogg Vorbis) or uncompressed WAV files from a flash memory card. ARM-Native MP3 and Ogg Vorbis decoding. Pocket Tunes can decode any MP3 or Ogg Vorbis file in real time without any skips or delays. Full Skin Support. The PocketTunes player screen is completely customizable, allowing you to adjust the display to fit your mood. High Resolution. The default skin (and many others) take full advantage of the Tungsten T's high-resolution display with 16-bit graphics. WAV File Playing. Play most uncompressed WAV files. Five-Way Navigator. Use the Five-Way navigator control on the Tungsten T to play, pause, adjust the volume, or skip to another song. Play Lists. Create custom play lists to organize your music. Shuffle and Repeat. Toggle the shuffle and repeat buttons to change the order your songs are played. Volume and Balance. Adjust the volume and balance as the song is playing. Seek Bar....";
fDesc[6] = "this category, this game is pretty different from others. The game is organized into chapters, in each chapter you’ll need to solve a case in The Vanishing Files to uncover the story.";
fDesc[7] = ", Pirateville Deluxe, now. The handsome pirate Jack \"the Sharpshooter\" recieves an ancient casket from an old friend. He is not a very patient man and his curiosity brings about unbelievable adventures in which magic, love, gold, weapons and a cursed ghost play a big part.";
fDesc[8] = "The game will provide a list and some hints in case you get stuck. What makes this game a bit different from others of the kind is that not always provides a list of specific items to do, but sometimes give you a category in which the items you have to find could be categorized.";
fDesc[9] = "Collect cleverly hidden items, solve brain-bending bonus games and stop this vile villain before he completes his dastardly plan. Interpol: The Trail of Dr. Chaos Deluxe is a delightful adventure for the entire family.";
fDesc[10] = "charming little town find the items they desire. You have to earn enough money to restore and reopen your Uncle Roy's gas station. Featuring two exciting game modes, a unique hint feature, and hours of eye-popping fun.";
fDesc[11] = "Landers, where you have to spin the wheel and travel to different locations such as Spain, China, Australia, Brazil, to name but a few.";
fDesc[12] = "“missions”. You’ll be welcomed by Mr. Bones who owns a cat in love with his neighbor’s kitty. Now, those cats want to get married but since they are cats they don’t have any money! So the game invites you to help Mr. Bones and the cute cats to collect money for the wedding.";
fDesc[13] = "disappeared in Prague the day before and they need to find him as soon as possible to be able to unveil the Golden Prague Clock on time. The game itself is a typical seek & find game. You will be presented with different scenes in which you have to find a list of items.";
fDesc[14] = "This means that you have to search for certain items on different locations, according to a list provided that dictates what to look for. What you have to do is to help Larry, Moe and Curly to find a hidden treasure and buy the building before they get evicted.";
fDesc[15] = "a characteristic that makes it pretty unique in its category: you will be in a race. The second characteristic that the game features is that it’s a team game. You can play it alone though.";
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 = '...';
}
}