var fDesc=new Array();
fDesc[1] = "shop. You can sell flowers in bouquets which is twice profitable than selling single flowers. You can try this game for 60 minutes before you buy the licensed version. There are some discounts for GameServer Members.";
fDesc[2] = "selling good and searching for fortune and fame. The key of the game is to buy low priced goods and then sell them high to accumulate money. You also can get money by collecting villainous pirates bounties.";
fDesc[3] = "will have to take good care of animals and plants, fulfilling their needs suchs as food, water and else. Then you'll have to sell your production to local restaurants and collect money.";
fDesc[4] = "put out of business by Mr. Big’s mega conglomerate MegaPet. Now, you have to sell pets, please customers and transform the pet shop into a successful thriving boutique! You can try this game for 60 minutes before you buy the licensed version.";
fDesc[5] = "factory and you must get ingredients to prepare different products to sell in the market of chocolate. Zürich chocolate is famous all over the world and you must cover the world demand and make your business grow.";
fDesc[6] = "boutique and help the business grow up to earn more money and keep on progressing. You will have different customers asking you for some clothes and you will have to design them and join them in packs to deliver them to your customer.";
fDesc[7] = "create their own multimedia productions including professional producers who require an authoring program that features a Commercial License that enables them to sell the work they produce in the program such as DVDs, CDs, graphics an photographic images.";
fDesc[8] = "will challenge your speed and ability to serve costumers and fill their needs. This game is a great adventure with good graphics and action moves.";
fDesc[9] = "Market\", that is the place where banks and other institutions facilitate the buying and selling of foreign currencies. The interface will show you the values of the different currencies. Your goal is to buy and sell those currencies, trying to obtain some benefit from your transactions.";
fDesc[10] = "Scruff has hidden valuable artifacts throughout the Scruff home and if they can locate them all they won't have to sell their family home. Join the Scruffs on a scavenger hunt in The Scruffs Deluxe!";
fDesc[11] = "and be careful not to mix the aggressive fishes with the weak ones, or they will attack them or even eat them. Make your fish store grow as you buy new species.";
fDesc[12] = "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[13] = "this game you have to stock your inventory, make your boutique succeed, get clients, and create and design nice looking accessories to sell them on your store to very selective customers.";
fDesc[14] = "the most popular forms of payment - Paypal. With this program you will be able to create your online shop without knowing how to integrate PayPal.";
fDesc[15] = "stock trend is changing. You know when to buy or sell stocks from 4T stock trading strategy.";
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 = '...';
}
}