// ************************************************************************************
// ** This file has been created with the Rotating Content Tool by Amesbury Web.     **
// ** For more information, visit us on the web:                                     **
// **                                                                                **
// **     Rotating Content Tool   -- http://rotatecontent.com/                       **
// **     Company: Amesbury Web   -- http://amesburyweb.com/                         **
// **     Author:  Randy Hoyt     -- http://randyhoyt.com/                           **
// **                                                                                **
// ************************************************************************************

varLength = 7
var entryContent = new Array(varLength)

entryContent[0] = "Make absolutely certain that water is getting to all areas of your new lawn. Corners and edges are easily missed by sprinklers and tend to dry out faster than the center of your lawn."
entryContent[1] = "Measure the amount of water you are applying to your lawn.  Knowing that 600 gallons of water per 1000 square foot equals one inch of water will help you calculate the timer settings your lawn will require."
entryContent[2] = "Turfgrass sod can be installed year-round, even on frozen ground, if sod is available; however, sodding during the heat of summer will require more water than during cooler periods."
entryContent[3] = "Mow frequently enough (with a sharp blade) so you never cut-off more than one-third of the grass blades in a single mowing. This will also allow you to leave the clippings on the lawn so they can naturally degrade and return nutrients to the lawn."
entryContent[4] = "Aerate every other year to reduce compaction and increase the exchange of water and air at the root level."
entryContent[5] = "Use Organic Gem for your fertilizer! This product is different from anything else on the market today, due to both the raw material source and their patented processing method."
entryContent[6] = "Organic Gem fertilizer provides superior plant health, soil health, microbial activity and pest resistance! Try it today!"



var randomNumber = Math.random()
randomNumber *= varLength
randomNumber = parseInt(randomNumber)
if(isNaN(randomNumber)) randomNumber = 0
else randomNumber %= varLength
selectedContent = entryContent[randomNumber]

function tips() {
document.write (selectedContent);
}
