function displayTesimonial()
{
	var testimonials = [
						"Marching Ant was fast, thorough and competitively priced. They delivered all of my things promptly safely and ... <a href=\"testimonials.htm\"> Read More </a>",
						"These guys are awesome! That is all I really need to say. I had my house painted earlier this year and ... <a href=\"testimonials.htm\"> Read More </a>",
						"My husband and I have used Marching Ant Moving several times and ... <a href=\"testimonials.htm\"> Read More </a>",
						"Marching Ant Moved our household stuff big and small and also the stuff in my airplane hanger. They .. <a href=\"testimonials.htm\"> Read More </a>"
					   ];
	
	document.getElementById('PartTestimonial').innerHTML = testimonials[Math.floor(Math.random() * 4)];
}

function displayTip()
{
	var tips = [
					"Pack Heavy items (books, magazines, etc.) in small boxes ... <a href=\"tips.htm\"> Read More </a>",
					"If you are moving from an apartment, try to save a parking spot or two near the building the night before by using your own vehicles. This will make the movers much more efficient ... <a href=\"tips.htm\"> Read More </a>",
					"Do not use duct tape for boxes. Use packing tape. This is the one thing duct tape is not good for. ... <a href=\"tips.htm\"> Read More </a>",
					"When marking your boxes for the movers, try to mark the side and top of each box. This helps the movers get all your goods in the correct rooms. ... <a href=\"tips.htm\"> Read More </a>",
					"Legally, your mover cannot (and will not) move flammable goods or ammunition ... <a href=\"tips.htm\"> Read More </a>",
					"Make sure you tape the bottom of all packing boxes...folding them in leaves them weak and vulnerable to damage ... <a href=\"tips.htm\"> Read More </a>",
					"Have a general game plan for location of large items at your new location...this will make the move go smoothly and help to avoid moving items several times ... <a href=\"tips.htm\"> Read More </a>",
					"While we love kids and pets, it is best for the safety and efficiency of all parties if you are able to have someone else take them during the move (another location is best) ... <a href=\"tips.htm\"> Read More </a>",
					"If you are trying to save time on moving day, you can have all beds broken down and appliances disconnected (we can handle this if you are unable) ... <a href=\"tips.htm\"> Read More </a>",
					"Try to say goodbye to the neighbors on the day before the move...too many visitors can be distracting ... <a href=\"tips.htm\"> Read More </a>",
					"While it is not required for them to be moved, if you have the original boxes for electronics, it is a good way to provide additional protection for these items (Flat panel TVs, stereo equipment, etc.) ... <a href=\"tips.htm\"> Read More </a>",
					"Make sure you have provided the movers with all appropriate phone numbers in case there are questions on moving day ... <a href=\"tips.htm\"> Read More </a>",
					"Pack a box of \"essentials\" that stays with you. You don't want to be searching through all your boxes looking for vital documents, pills or other necessities ... <a href=\"tips.htm\"> Read More </a>"
			   ];
	
	document.getElementById('Tip').innerHTML = tips[Math.floor(Math.random() * 13)];
}

function displayAffiliates()
{
	var affiliates = [
						"<li>Chet's Auto Repair</li>",
						"<li>Jackson Chiropractic</li>",
						"<li>D.M. Burr</li>",
						"<li>W.J. Phillips Insurance</li>",
						"<li>Sign-A-Rama</li>",
						"<li>Economy Prints &amp; Graphics</li>",
						"<li>Vern's Collision</li>",
						"<li>Holland Heating</li>",
						"<li>Cyberlink Computing Solutions</li>",
						"<li>Bois Insurance</li>",
						"<li>Chase Investments</li>",
						"<li>Executive Mortgage</li>"
					  ];
					  
	
	tempString = affiliates[0] + affiliates[1] + affiliates[2] + affiliates[3] + "<li><a href=\"affiliates.htm\" class=\"red\">View All...</a></li>";
	
	document.getElementById('PartAffiliates').innerHTML = tempString;
}


