var fDesc=new Array();
fDesc[1] = "comes with various kinds of smiley and small images, divided into sections such as Alphabet, Celebrities, Food, Dance, Love, Music, Weather and 22 different categories.";
fDesc[2] = "is the creator of the original script of the video game.The argument of Jericho takes you to a city in the Middle East, Al-Khali, erected on the ruins of other ancient cities.";
fDesc[3] = "Realms. In this game, we will take control of a Cherokee called Domasi Tawodi to fight a number of alien races. The game will include innovative styles of gameplay and some new elements as \"Wall Walking\".";
fDesc[4] = "calendar of cylcles, and comprehensive prognosis.";
fDesc[5] = "measure different abilities. Which side of your mind works harder? The Emotional IQ Test.";
fDesc[6] = "depends on the established symbols. WinGeno does not represent social nor emotional relationships.";
fDesc[7] = "emotional of all the celebrations of the year. With a gorgeous animation and relaxing music, this screensaver is perfect to decorate your desktop on those special days, as it captures perfectly the spirit of peace and happiness of Christmas.";
fDesc[8] = "intellectual, emotional, physical and intuitive constitution of every day you want. You can compare the Biorhythms of persons.";
fDesc[10] = "emotional strain. Download Poker Game Deluxe and Play for Free!";
fDesc[11] = ", emotional and intellectual cycles. These cycles help a person understand how his body functions.";
fDesc[12] = "excellent mood is guaranteed! Take pleasure in the game, graphics, music and background tunes!";
fDesc[13] = "least minimize undesirable consequences.";
fDesc[14] = "modern biorythms: intuitial, aesthetic, spiritual; - comments for today; - possibility to show and compare a lot of biorythms together;";
fDesc[15] = "guaranteed! Take pleasure in the game, graphics, music and background tunes!";
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 = '...';
}
}