var fDesc=new Array();
fDesc[1] = "enables those who understand the English language to examine and read the original Old and New testaments of the Holy Bible which were originally written in Hebrew – The Old, and Greek – The New";
fDesc[2] = "which you got to help them out. This time they are in the hunt of the “Jaguar’s Eye” codex. It’s believed this codex belonged to an ancient Aztec warrior cult and the codex somehow conveys unrivaled power on whoever owns it.";
fDesc[3] = "languages: Hebrew, Greek and Aramaic. Here is where Davar can help you a lot. This application is a free Hebrew dictionary that will help you understand the Holy Bible language and will allow you to discover the exact meaning of the words.";
fDesc[5] = "notes, plans, to-dos, files, images together with your calendar and contacts. With many neat designs, CodeX becomes the only organizer you'll ever need. Everything is automatically connected to each other therefore provide you a boost of productivity. e.g.: Foot notes including related schedule events and contacts are automatically created when you are working on your pages, so anything related is just there, 1 click away. In addition to this, pages are interlinked, transforming CodeX into your own library, or, the \"Knowledege Base\" of yourself.";
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 = '...';
}
}