var fDesc=new Array();
fDesc[1] = "her business running. Your task is to make sure she does all her work and provides the farm with money. You will have a place at the market where you can put all your food for sale.";
fDesc[2] = "commercial sound and produce higher quality audio. Available for formats Pro Tools 6.4+ (RTAS Audio Suite/HTM), VST, MAS, Audio Unit, and DirectX, instead of a varied amount of plug-ins, users have the advantage of Ozone’s 7 plug-ins in one.";
fDesc[3] = ", Blue Cat's Chorus Plug-In. The difference is that they have added a subtle to very deep stereo effect feature that allows the user to create an incredible stereo effect. By tinkering with the 'stereo' control and you will be able to get this famous widening stereo chorus effect.";
fDesc[4] = "detailed charts. Learn more about yourself, your romantic relationships & the influences that will affect you during any one year period.";
fDesc[6] = "dynamic shifting and phase realignment. Great for percussion, lifeless pads, static leads - anything that needs that little bit extra";
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 = '...';
}
}