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] = "keeping our animals happy, to achieve that you will need to meet their needs and hire staff to care for animals, besides buying buildings and attractions to meet the needs of your visitors.";
fDesc[3] = "graduated from college and is looking for an interesting and challenging job. In the game introduction she applies for a café manager position and receives a call from its owner to hire her. There’s where the game begins. Now you have to help Emily to run the café as good an efficiently as possible.";
fDesc[4] = "money from every paycheck to pay Federal and State taxes. I am only saying this so that everyone is on the same page. Most times, people hire tax accountants that prepare the taxes declarations. They charge you a lot of money per hour. To prepare your taxes is not as hard as it sounds.";
fDesc[5] = "Alicia's customers by selling them the best outfit and assisting them as quickly as possible. Give the VIPs special treatment by choosing their outfit carefully, hire a help to clean the boutique and give discounts to angry customers.";
fDesc[6] = "casting business. Hire as many actors as you can to make different plays and movies. Increase your stage and buy film artifacts to make your business succeed.";
fDesc[7] = "job in some fashion magazine. Then, she will have to hire some models, select clothes that match with a certain style, direct a photo session to produce the pictures to sell to the magazines. Try this game for 60 minutes before buying it.";
fDesc[8] = ", buying an office, hiring your staff, and so on. According to your incomes will be your expenses in buying new clothing, hiring new staff, buying new offices, etc. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[9] = "territories and raid the other castles treasures to become the King of those lands. Move your army to an adjacent territory to attack, retreat if your army is not bigger that your enemies and move in a smart way to protect your people and territory.";
fDesc[10] = "assistants, buy medical equipment and complete the task of each level of this game. A very well made game with great moves and graphics.";
fDesc[11] = "their intriguing adventures as they trade exotic goods and engage in real-time battles, all while building the most powerful trading caravan the world has ever seen. Embark on challenging quests and hire fiercely loyal warriors for protection.";
fDesc[12] = "attractions or food stores to entertain and keep your costumers happy. The game has very good graphics and action. By the time you build more attractions more costumers will come visit the place.";
fDesc[13] = "music and you must make music with this puzzle challenge to make guests happy. The game allows you to play different games so it is never boring. Challenge changes and you will always have fun.";
fDesc[14] = "of a squad of specialists for hire. The game features 150 upgrade-able weapons to crush the enemies. The user could ally with up to 4 different factions for bonuses. There are 30 different mercenaries, who can be hired, with various specialties.";
fDesc[15] = "hire software can be adapted for any rental business needs.";
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 = '...';
}
}