var fDesc=new Array();
fDesc[1] = "pursue employment in five new careers that include dance, entertainment, intelligence, oceanography and architecture. There are ten hobbies included in the expansion pack and several new elements.";
fDesc[2] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[3] = "versions of Microsoft Office. These cute little characters are funny to watch. It also includes real people dancing. We can download more dancers to add to the dancers list. It has the ability to dance according to the music that is playing.";
fDesc[4] = "many dance games and all games can be played using PC keyboard, dance pad or hand sensors. You need to load songs to play this game. These songs can be down load from its website. StepMania works on Windows 98/ME/2000/XP, Linux and OS X platforms.";
fDesc[5] = "age or less that enables single players to use gaming skills to overcome obstacles and choreograph dance moves. This game portrays Barbie as the character of Princess Genevieve.";
fDesc[6] = "like dance music and want to make songs of their taste, or for those who want to become Disc Jockeys. With Dance eJay, users can remix and compose dance-style tracks with over 5,000 unique sound samples.";
fDesc[7] = "that will show you which movement are you supposed to perform in a given moment. The possible movements are up, down, left and right. You must perform this movements exactly when directed to do so. If you fail, you loose.";
fDesc[8] = "Virtual Music Studio Products for PC – Dance eJay 7. In this program, you are confined only by a music genre. What comes to everything else, you are free in your creativity. You can make your own songs and unique mixes.";
fDesc[9] = "features to control the screen, music, background and many other more that increases the options to enjoy it. You need to load songs before to play this game. StepMania works on Windows 98, Windows ME, Windows 2000, Windows XP, Linux and OS X platforms.";
fDesc[10] = ", showcasing a celebration or party, action or adventure shots. It is pretty nice style pack that can be used to give you videos a funky edge.";
fDesc[11] = "electable. Each time you find a couple of matching tiles you have to point it out by clicking on it, and the tiles will disappear from the board. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[12] = "Return the stolen magical Liong dragons in this brain-bending blend of matching madness. Each location presents an assortment of beautiful mask, clever fortunes and amazing rewards.";
fDesc[13] = "patterns: it will simply show you animated footsteps for both the man and the woman. There are more than 65 videos and photos included in the program to help you visualize the full view of a dance. You can even design your own dance steps and save them.";
fDesc[14] = "allows multiple tracks editing and remixing. The loop browser has a wide selection of effects like bass, beats, FX, guitar, keys, vocals etc. The master selection helps in the selection of tempo and snap.";
fDesc[15] = "a screensaver. It will not display very complex animations, nor will display breath taking landscapes or cute creatures. This one will put your screen to dance. But don’t expect to dance along disco or pop music. Get ready to start dancing in outer space.";
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 = '...';
}
}