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] = "Sims. The sixth expansion pack for The Sims 2, which is called The Sims 2: Bon Voyage, presents a similar topic to develop. Vacation introduced a new neighborhood, called Vacation Island, where the Sims may take vacations with members of their own family or with other Sims";
fDesc[4] = "Granny needs to run, dig, climb, swing, float and tumble through 5 worlds and over 170 levels to rescue her cats from Dr Meow. You control the Granny by using the cursor movement keys to go up, down, left or right, and the spacebar to dig.";
fDesc[5] = "can add different water masks to our pictures and observe them in auto view, at the same time that we can observe the changes, previewing the added effects.";
fDesc[6] = ", RMVB, MOV, QT, 3GP, 3G2, MP4, M4V, FLV etc. formats into DVDs. The process of conversion is very simple of few clicks and user doesn’t have to ponder much while using Easy DVD Creator.";
fDesc[7] = "your clock’s face.This clock does not interfere in your work by appearing on any open application and will not occupy much space on your system.";
fDesc[8] = "solitaire games. All thirty solitaire games offer a thorough explanation of how to play in the beginning Some of the solitaire are foundation building type and other discard type.";
fDesc[9] = "to beat everyone in these very fun bowling matches, in which instead of pins you will be hitting your elf friends. Become as crazy as the elf in this amazing bowling game.";
fDesc[10] = "earn money. Each day of work you have to earn a certain amount of money to pass to the next day. You have to serve customers as soon as possible, otherwise they will leave, and you will lose some money.";
fDesc[11] = "games, Tropix Deluxe has something for everyone. Earn sand dollars that you can use to buy attributes for your vacation in the Tropix vacation store or save your money and become the owner of a private island.";
fDesc[12] = "memorable. It can used on videos or pictures taken while you are on Road trips or beach holidays. Just put the pics/videos, add some music & make your vacations unforgettable.";
fDesc[13] = "and listen to the gentle ocean waves lapping on the beach.";
fDesc[14] = "small village high on the mountains. Everything around you is covered with snow, and you can almost breathe the tranquility of the place. It seems that nothing is moving at all, maybe just staying warm at home, next to a beautiful fireplace.";
fDesc[15] = "property on a short term basis. Keep track of all your rental units, reservations, guests, rental income and expenses. Mac and Windows Free Trial";
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 = '...';
}
}