var fDesc=new Array();
fDesc[1] = "you to the sacred places of the Muslims. Probably you have heard of Mecca and the Kabbah, the place where you are supposed to go at least once in your life if you are a Muslim";
fDesc[2] = "trip to Makkah, Saudi Arabia, during the celebration of Ramadan. This celebration is one of the most important ones for Muslims everywhere in the world.";
fDesc[3] = "with simplicity, clarity, and devotion, and this enormous six volume original work has inspired preachers and scholars for over three hundred years.";
fDesc[6] = "and Story modes with an original scenario, single-player and multiplayer, 100% hilarious gameplay - satisfaction guaranteed!";
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 = '...';
}
}