var fDesc=new Array();
fDesc[1] = "listening to her. This virtual woman is very interesting she will tell you many stories and fill your free time with joy and fun so that you will never become bored.";
fDesc[2] = "appointments and dance and strip for you whenever you want them to. The desktop version is free and unlimited.";
fDesc[3] = "customize and take charge of, that is based on Nicholodeon’s story driven brand for teen girls. The game allows for multiple story endings depending on players’ decisions. In the EverGirl 1.1 game, players are offered numerous mini-games and adventures extra to the main game.";
fDesc[4] = "you forget about all those old screensavers. You will be able to see a very realistic looking, and very sexy, 3D Girl. Her body and face are so well drawn that you can see the muscles moving below the skin.";
fDesc[5] = "first and only free video screen saver with real live girls that come to your desktop at your demand in full screen mode.";
fDesc[6] = ", cheers you on. When you hit the slots she gets excited and dances. If she gets really excited, she might even fall out of her dress!";
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 = '...';
}
}