var fDesc=new Array();
fDesc[1] = ", load colors, even get the specific color from any area on your screen. Other features include \"Sticky\", which manipulate the brightness of the color, an inverse button to quickly find the opposite color, a hex (HTML) to color and vice versa conversion tool, and a color blender.";
fDesc[2] = "energetic girl finds a job advertisement as a server in a juice bar and without second thoughts decides to call. Before even noticing it she’s working at the Golden Hearts. The whole idea of the game is to serve customers as soon as possible and make the most money you can.";
fDesc[3] = ", post-production, realtime interactive 3D and game creation and playback with cross-platform compatibility - all in one tidy, easily and free downloadable package! this software is open-source and licensed under GPL. sources are available from the developer site.";
fDesc[4] = "for working with Easy RSS Mixer.";
fDesc[5] = "open at your desktop (so called alpha blending). Use Ctrl+F11 and Ctrl+F12 keys to setup alpha blending and make your work with multiple files mor";
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 = '...';
}
}