var fDesc=new Array();
fDesc[1] = "minutes. The program features more than 8,000 recipes, including grill recipes, appetizers, entrees, foods for kids, and incredible desserts.";
fDesc[2] = "also refine the search by selecting one or more of the 24 food categories. A free software with amazing results.";
fDesc[3] = "discounts, administrate members, add drinks and foods, free help from the developers";
fDesc[4] = "balanced, view your weight and calories tallies for past days, find out if you have had enough water, etc. It also has an exercise dictionary, food dictionary, recipe box, goal setter, and a calendar where you can write your notes.";
fDesc[6] = "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[7] = ", Burger King and Pizza Hut. Calorie Counter calculates your Basal Metabolic Rate (BMR) calorie requirements and BMI.";
fDesc[8] = "people on diets, whose fat or carb intake must be limited. You will feel completely captivated with the value descriptions of each food. It is up to us to eat well and healthy, here is an excellent tool to consider.";
fDesc[9] = "Selector function can be used to balance nutrients by combining natural foods.";
fDesc[10] = "software is based on The U.S. Department of Agriculture. MyPyramid food guidance system is a handy handheld tool will help you choose the foods and the amounts that are right for you. This guide puts all the nutritional and diet information, tips and it is easy to use.";
fDesc[11] = "eat as much food as he can, but watch out for Mr. Teeth...he'll crash the whole party! There are lots of different foods to eat as you work your way through the many levels. Each food has different point values. If you can keep Chuck moving, you can earn BIG points with MULTIMUNCH combos. Chow Down! Big bonuses for MULTIMUNCH combos can cause POWER UPs to appear on the board. Whenever a POWER UP appears, make a move for it! Mr. Teeth can steal them! Here's the POWER UPs and what they do: SPEEDY SHOES...Makes Chuck or Mr. Teeth run super fast and are invulnerable; WATER WALLS...Chuck and Mr. Teeth can walk through all barriers; FROZEN FOE...Freezes Chuck or Mr. Teeth in their tracks; PIZZA PARTY...All food on the board becomes pizza; BURGER BLAST...All food becomes tasty cheeseburgers; TURKEY TIME...All food becomes roast turkeys; FEEDING FRENZY...Like Speedy Shoes - will race around...";
fDesc[12] = "intake, fat grams, carbohydrates, fiber, protein, cholesterol, along with sodium, potassium, and calcium.";
fDesc[13] = "Easterns almost every day. The recipes are hand picked from many neighboring Arabic countries. Recipes are so easy to follow.";
fDesc[14] = "very easy with several food search tools, and custom foods, meals and recipes. Several detailed analyses are proposed.";
fDesc[15] = "functions are managed automatically. You don't need to know anything about neural networks.";
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 = '...';
}
}