var fDesc=new Array();
fDesc[1] = "will be able to select among cats, dogs, birds, tropical fish and hamsters. But there are not only animals in this expansion: it also brings new objects as houses for dog, cages for parrots, pictures and more.";
fDesc[2] = "with their friends. You can also have your seems wearing the latest teen fashions including track suits, designer jeans, and yoga outfits. In addition, The Sims 2 Teen Style Stuff is the first stuff pack to feature a The Sims contest winner!";
fDesc[3] = "tree by introducing step-by-step data about our ancestors. It is a very easy to use program and we do not need special training to start building our history to share with the rest of our family or just for entertainment.";
fDesc[4] = "charts. With the help of this software the user can easily modify the looks of the charts as per requirement, by selecting any desired color theme, content, pictures, box borders, number of generations and lots more.";
fDesc[5] = "watch high quality videos on your Ipod Classic. It will let you download videos from YouTube and similar services, rip entire DVDs, and convert many formats to MP4.";
fDesc[6] = ", everything is being saved and you do not have to worry about losing your information. Plus, protect your data by setting passwords and make sure that no one has access to it! In few simple steps, your computer is fully saved.";
fDesc[7] = "can watch high quality videos on your Ipod Nano. It will let you download videos from YouTube and similar services, rip entire DVDs, and convert many formats to MP4.";
fDesc[8] = "MyPlayCity Arkanoid will give you hours of good time.";
fDesc[10] = "these treasures for future generations. Now it is time to discover his amazing inventions...hidden deep in the SECRET CHAMBER...But the King protected his treasures with a complex series of jeweled locks and mechanical scarabs. Solve the ancient puzzle and discover the wonder of the King's genius before the scarabs can stop you.";
fDesc[11] = "editor FrontPage. The base program from the web editing, FrontPage; is not longer been developed by Microsoft reason why all the users need to move for the next generations of this software.";
fDesc[12] = "that will help you create a personal and unique slide show, using your very own personal photos. What a great way to ensure that your memories have a lasting impression for future generations to come.";
fDesc[13] = "program includes two generations of buttons that are customizable. The first generation is suitable for web-based hyperlinking, featuring custom text color and tinting for each button. The second generation of buttons features liking options and PowerPoint navigation support.";
fDesc[14] = "several versions / generations (locally as well as over the network) while you are working.";
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 = '...';
}
}