var fDesc=new Array();
fDesc[1] = "The Sims 2 includes plenty of new features that enhance the gameplay even more. This new version features an enhanced neighborhood editor that lets you import custom cities from Maxis' own SimCity 4, if you have it installed.";
fDesc[2] = "women. The pack adds songs by Jibbs, Keke Palmer, Kevin Michael, and NLT to the Pop and Hip Hop stations. The \"stuff pack\" also comes with three pre-made H&M stores.";
fDesc[3] = "clothing to them, get paid, and do some cleaning when there are no customers in the shop. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[4] = "2. Advanced players can take advantage of this great and powerful tool by designing clothing, skins, and accessories, and at the same time also generating unique-looking facial features and providing their sims with amusing hair colors.";
fDesc[5] = "“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[6] = ", 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[7] = "studios and production environment. Artists and animators can create 3D scenes from great collection of premade 3D human models using intuitive and clear interface of this program.";
fDesc[8] = "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[9] = "3D animation. Users can find here pre-made 3D figures, and also everything they need to create their living environment – clothing, landscapes and more. Also there is a large library of movement, mimics, which you can apply to your characters.";
fDesc[10] = "like that. You need to keep tables stocked. When customers don’t buy what they’ve tried on in the dressing room, you have to pick it up and put it back in the tables. The customers who find what they want will go to the cash register to pay.";
fDesc[12] = "better clothing and stronger and better weapons. Battle awesome mystical monsters while searching for your kidnapped brother. Become a hero in this exciting and glorious adventure!";
fDesc[13] = "of America. Plot: You will be able to create your own character with a good variety of options available, particularly in terms of clothing and accessories.";
fDesc[14] = "Singles, Doubles and mixed Doubles. There is a customization option available for the character before the world tour. There aren’t many options but you can still customize the character’s hair, skin color, clothing patterns, etc.";
fDesc[15] = "occasion. You will be able to create clothing sets for each destination,weather and temperature beforehand";
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 = '...';
}
}