var fDesc=new Array();
fDesc[1] = "shape to win an upcoming tug-of-war competition. You´ll have to serve the customers of your fitness center, and will have to conquer different goals in order to get to the next level.";
fDesc[2] = "have customers of all ages and conditions, from newbie joggers to weight lifters. Your job is to teach them how to work out and reach their goals.";
fDesc[3] = "data, supplements, injuries, body measurements etc. Graphs describe your progress. Library contains over 170 exercises.";
fDesc[4] = "let the rhythm flow from one song to the next. You can burn your custom mix to CD, or export it to an iPod or similar player.";
fDesc[5] = "application, all you have to do is connect your Sony Ericsson mobile to your PC by USB cable, select the FILE TRANSFER option that appears on the phone and all your fitness results will be automatically transfered to your PC. It's very easy, isn't it?";
fDesc[6] = "beginners and health professionals alike. It will help you lose your extra body weight or maintain your current body health and fitness. By using this program, you will be able to initiate a perfect diet regime, monitor it, trace your activities and the lost body weight.";
fDesc[7] = "limits and achieve the body you desire. Lose fat and increase muscle mass. Every day you wait is a day of lost progress!";
fDesc[8] = "person. The main goal of the application is to let you record your exercise sessions and to give you lots and lots of information about them. The main window comprises a calendar and several other panels.";
fDesc[10] = "according to the fitness programs selected. This program offers many features to keep you healthy and in good shape. Open Fitness works on Linux, Mac OS X and Windows platforms.";
fDesc[11] = "The program has data import, export, password protection, backup copying and printing features.";
fDesc[12] = ", record your routines, and view your progress. Sync with your desktop computer to view graphs and print your results.";
fDesc[13] = "database, and view your nutritional requirements, such as RDA's.";
fDesc[14] = "enthusiasts. The software allows you to track your progress in your resistance workouts, aerobic workouts, diet, weight etc.";
fDesc[15] = "plan you can live and succeed with. It contains sophisticated nutrition and exercise journals, plus a variety of other related tools.";
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 = '...';
}
}