var fDesc=new Array();
fDesc[1] = "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[2] = "Jojo Cruz and her daughter Rosalind to make stylish outfits for female and male models as you showcase your fashion sense on runways from L.A. to Berlin.";
fDesc[3] = "a grade as well as the fashion show overall. The game has a good presentation, a good and challenging game mode and good items. This all adds up to a very recommendable game.";
fDesc[4] = "series! Restore shabby hometown restaurants to their former glory with Flo and her grandma.Meet six new customers, take reservations, and dress-up and train waiters.";
fDesc[5] = "Maya to get the success she has ever wanted in the fashion industry. It will be a tough road but it will be very funny and entertaining. You will be able to design clothe and travel around several cities of the United States of America.";
fDesc[6] = "creative and entertaining. It has got over forty levels and it has got hundred of garments. You will have to help kate cut,, measure and sew her clothes to go throughout the levels.";
fDesc[7] = "“analyzer” platform. Analyzers show the order and you have to make the item as pictured. Making clothes is pretty easy. First you have to make the cloth, then the fabric and finally the print. Fabricators make the cloth, patternizers cut the shape and doodazzlers add prints.";
fDesc[8] = "integrates with Adobe Photoshop, Paint Shop Pro Photo and other photo-editing applications. It gives you the power to apply any imaginative effect to an image surface without disturbing its original details.";
fDesc[9] = "dress. You have to pick up the fabric and take it to the cutting station. Once the fabric is cut you have to take it to the sewing station. In that station is where the dress materializes and you can hand it to the customer.";
fDesc[10] = "equipped shop. The aim of the game is to sell clothes to the customers that come in our shop. Customers that get to the shop will sit in a sofa, if there at least one empty sofa, and then the will demand different things.";
fDesc[12] = "sitting at the shopping center accompanied by their four pets. Nita and Nora meet them. They are carrying Snappy, their blue dog, inside their fashion bag. The dog runs away. They find out that he has been kidnapped We must help the group to find Snappy..";
fDesc[13] = "game. You can clone the entire collection of outfits and work with the doll like a fashion stylist.";
fDesc[14] = "appropriate category, so that you can create new combinations and collections. Dress Assistant will help you to get new clothes through amazon.com and try out new collections.";
fDesc[15] = "goal is to dress them up and you have couple of different lingerie collections to choose from.";
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 = '...';
}
}