var fDesc=new Array();
fDesc[1] = "furnish a flat and calculate the it's cost with the latest IKEA prices. You can share the plan of your dream bedroom by saving the project to the disk and send it by email to your friend.";
fDesc[2] = "with. This updating adds furniture, outfits and objects to The Sims 2. However, although the objects, which include new themed bedroom sets and some decorative objects, are interesting enough, they do not provide any real new functionality to the game.";
fDesc[3] = "scratch,stop,cue,air, repeat etc that a normal turntable has,it will add up nothing but expertise of you being a DJ.The software is really easy to operate and even simple to use.";
fDesc[4] = "empowering music lovers, aspiring DJs and pros to scratch, adjust tempo and pitch, play backwards, and mix MP3s, WAVs, Ots files and CDs.";
fDesc[5] = "designing the bedroom you´ll like to have, according to its size, layout, and furniture you would like to add. It lets you view the planned bedroom before you buy anything, and gives you an idea of the cost it will have.";
fDesc[6] = "includes sound both in the recordings and the MIDI recorded by Michael. Michael Blair’s personal instrument set-up included a mix of regular drums and odd bits and pieces like trashcans, bedroom furniture and rusty bicycle.";
fDesc[7] = "disappeared in Prague the day before and they need to find him as soon as possible to be able to unveil the Golden Prague Clock on time. The game itself is a typical seek & find game. You will be presented with different scenes in which you have to find a list of items.";
fDesc[8] = "Children can choose among the seven different rooms within it and the backyard. In the babies´ room, children can learn several activities to entertain the babies like feeding them, making them play with toys or picking a story from the book to read them.";
fDesc[10] = "your dreams. When I saw it the first time I thought who would possibly like to play a game about creating his own baby? I'm a mother so let's see how this game can surprise me... or not.";
fDesc[13] = "Windows program - Track inventory, customers, sales, employees";
fDesc[14] = ", collection keeping. Program visually shows the location of each thing in the scheme of the room or warehouse.";
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 = '...';
}
}