var fDesc=new Array();
fDesc[1] = "to negotiate business of all types, that range from museums to restaurants, including products stores and merchandising. With the new expansion new objects are included as well as styles for the decoration of places and needs of the Sims.";
fDesc[2] = "furniture and decoration from the popular Swedish furniture chain IKEA, mainly concentrating on living rooms, bedrooms and home offices. It is the second stuff pack to feature products of a real-world company.";
fDesc[3] = "decorations, lets you add music and backgrounds. Supported output formats include: MP4, AVI, WMV, 3GP, WMV2 and the possibility to burn DVD discs.";
fDesc[4] = "literally a couple of seconds, you will be able to build up a stylish frame, create a postcard or a collage.";
fDesc[5] = "Your job is to design or change the decoration of a room or entire house, guiding yourself with the description of each character's personality and needs. You will have to decorate 52 different houses and 200 unique rooms, in 7 neighborhoods, which will give you many hours of fun.";
fDesc[6] = "images you have in your computer. It has a nice looking interface that makes the program fast and easy to work with, and shows you step by step how to use its tools.";
fDesc[7] = "to win the contest. Make sure to meet all the requests of the brides and grooms when it comes to decoration and food.";
fDesc[9] = "used on Christmas trees, these light bulbs will blink at the edges of the screen, while apropriate music is playing in the background.";
fDesc[10] = "holiday album, a personalized desktop wallpaper. 17 groups of versatile effects, built-in library. You can create endless number of effect versions!";
fDesc[11] = "must help her by stocking the shelves with the latest fashionable goods. You can enhance the look of your shop by picking wallpapers, exotic rugs, and other decorative enhancements.";
fDesc[13] = "start button.";
fDesc[14] = "\"XFader\" that allows you to create fade and mirror effects. Besides this, it has the following options: \"Shift edges\", \"Color\", \"Merge image\", \"Add image\", \"Generate\", “Filter”, “Decoration” and “Stereogram”.";
fDesc[15] = "libraries. The software includes features like 2D/3D Exterior Home Design, 2D/3D Landscape Design, Skylight & Dormer Cutout Tools, Deck Cutout Tool, Brand Name Content, Decorator Palette, Compass,";
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 = '...';
}
}