function displayTip(){
	var tipName = new Array();
	
	//	Here are all of the Tips:
	
	tipName[0] = "Choose lean cuts of beef, such as flank steak, for a hefty supply of protein, zinc, and B vitamins."
	tipName[1] = "Surprising but true - someone who skips breakfast tends to eat more calories the rest of the day."
	tipName[2] = "Cheese is high in protein and calcium but often high in saturated fats, too.  Use it sparingly and try Parmesan."
	tipName[3] = "Green fruits and vegetables are packed with important nutrients and cancer-fighting chemicals."
	tipName[4] = "Most nuts -- walnuts, pecans, hazelnuts -- are relatively low in saturated fat and a good source of protein."  
      	tipName[5] = "Please don't peel your pear!  Almost all of the important antioxidants that pears have to offer are in the skin."
	tipName[6] = "Walnuts are one of the most nutrient-dense whole food sources for essential nutrients."
	tipName[7] = "Slow down the pace of eating. Eating slowly enhances the enjoyment of food and beverages and gives your brain time to register fullness."
	tipName[8] = "Avoid whole milk and opt for reduced-fat or low-fat instead. They have more calcium and less sat fat."

	
	//  To add another, simply copy the following and increase the number inside the brackets
	//  to one above the last current tip.  Do not copy the  ' // ' preceding the statement.  Paste
	//  this code above this block.
	
	//     tipName[0] = "Walking or bicycling to school is one good way for kids to drive.";
	
	
	
	var selectedTip = Math.floor(Math.random()*tipName.length);
	document.write('<div id="tip">' + tipName[selectedTip] + '</div>');
	
}

