var fDesc=new Array();
fDesc[1] = "task is to have fun and collect as many tickets, as you possibly can. Once you have a certain amount of tickets, you can trade them for prices. There is no time limit and you can re-play each game as many times as you want.";
fDesc[2] = "paradise. Her uncle is getting old and tired and is thinking about retiring, but he wouldn’t like to sell his island to some unknown reach. So he had thought about letting the island in charge of Anna, but he wants her to show her capabilities of selling ice cream first.";
fDesc[3] = "love this fun game! As a matter of fact, you won’t be actually eating ice cream in the game, but you’ll be serving those crazy customers who want they orders ready as soon as possible. You can try this game for 60 minutes.";
fDesc[5] = "Pop, an ice cream produced by Streets. In this game, you will control the hero, Paddle Pop, the lion sailor, that sails to the Skull Island to battle once more against Shadow Master and his fleet of zombie pirates.";
fDesc[6] = "business. You must serve your customers by matching identical type of scoops of ice creams. Try to form special groups like scoop ring and giant scoops to get extra bonus.";
fDesc[7] = "commercial investment. You need to serve to customers and decide investments to expand the business. It is for the whole family, because it can be played even by 4 years old.";
fDesc[8] = "sell. Then we go to a neighbourhood to sell them. We must try to remember what are the most demanded ice creams to be sure to get some of those for the next day. We can also spend some money on promotion so as to get more customers.";
fDesc[9] = "Matrix\" start flowing down your screen. If you are a real fan of \"The Matrix\", you will surely enjoy Matrix Trilogy Screensaver. You can get ready to decipher those numbers and symbols. Who knows, you might discover something that everybody has missed.";
fDesc[10] = "needs and prepare the type of ice cream they are searching for. In this game you will travel around different islands making your ice cream business grow. Your clients will have different attitudes and patience, some are young people some are old.";
fDesc[11] = "mind: becoming the apprentice of the Legendary Sven Minski. Graphics have been superbly done, with lots of colors and details, and nice fitting music. If you are a fan of this type of games, then it surely won't disappoint you.";
fDesc[13] = "LinPlug_Albino_VSTi_v2 .2 is analog synthesizer software for VSTi, AU and RTAS. This plug-in features many filters having various characteristics. There are four different types of filters known as silk, cream, scream and comb. Each filter has three modes with top notch quality for the filter cutoff and resonance.";
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 = '...';
}
}