var fDesc=new Array();
fDesc[1] = "searching for a particular folder in a hurry. Having color-coded folders makes it much easier to find the needed one and you don’t waste your time at unnecessary search";
fDesc[2] = "8-ball, Cutthroat, 3-ball, Golf, 14.1 Continuous modes. He/she can choose to play some Trick Shots, too. Each time you select a mode, Backspin Billiards will display a screen with the rules for that specific variant, along with the options you can modify.";
fDesc[3] = "for specific songs and the results will be shown below. There are thousands of songs available. And yet, this is a legal application. The trick is simple. Muziic searches for songs at Youtube.com and gives you the sound of the video that you select.";
fDesc[4] = "sit, scare, pounce, etc. You have to feed, clean, sleep, health, make happy, etc. You can reward your dino with a treat after each trick, buy clothes and dress up your dinos, zoom in, zoom out, tilt and rotate in real 3D.";
fDesc[5] = "a vast environment. The game starts with your entry in to the birth place of skate culture the city of angels, Los Angeles. You get to choose your missions in Tony Hawk's American Wasteland 1.0 and you will never skate the same line twice.";
fDesc[6] = "fool you. It creates results of the highest qualities. If you need to create smaller images out of your big pictures, this application will certainly do the trick.";
fDesc[7] = "Trying it with any other device will result in a quite expensive paper weight. When you first run QuickFreedom it will look into your device's firmware and tell you whether or not your device can be jailbroken. Even if it is not ready, a firmware update will do the trick.";
fDesc[8] = "than ever. Flex GIF Animator offers a wide verity of special effects, motions and movements that help you to create professional looking animations without any prior knowledge.";
fDesc[9] = "ready for amazingly realistic 3-D billiards featuring nine different play modes including Cutthroat, 8 Ball, and 9 Ball. Test your skills with pre-set trick shots or play against the computer or a friend.";
fDesc[10] = "version provides unique tools for creating \"trick banners\" (with simulated Windows controls), which generally have the highest click-through rate";
fDesc[11] = "exactly what this game is about. With a very good 3D graphics this game intends to recreate the real emotion of car races. You will be able to enjoy this exciting game for only $ 14.5";
fDesc[12] = "your player's disk to match them and to remove them from the board. Great fun and action in more than 60 levels.";
fDesc[13] = "bunnies. You will have to groom, pamper your bunnies and play with them, trying to keep them healthy and happy. In order to do so, you can teach the bunnies to perform tricks, such as jumping the rope, twisting their ears and things like these.";
fDesc[14] = "arcade style puzzle game. With just a click of your mouse, you can swap candy places to match 3 similar candies in a row to clear your board of candies. The more candies you clear from your board, the more score points you get.";
fDesc[15] = "dealt to you and thirteen to your opponent. The remaining cards form the stock and are placed face down by the table. The top stock card is turned face up. This card defines the trump suit. The game starts with the non-dealer leading to the first trick; the other player then follows. If possible, players must follow the suit of the led card, otherwise they may discard or trump. The winner of the trick takes the top card from the stock, and the loser takes the next (unseen) card. This process continues until the stock has been depleted, whereupon \"phase two\" of the round is started.";
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 = '...';
}
}