// ************************************************************************************
// ** 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 = 6
var entryContent = new Array(varLength)

entryContent[0] = "<font size=\"2\" face=\"Georgia\">Always loosen the roots of a potted plant before planting.  One of my favorite tools to use for small plants is a kitchen fork.  If you do not open up the roots they continue growing in the shape of the pot and strangle themselves.</font>"
entryContent[1] = "<font size=\"2\" face=\"Georgia\">Spray to discourage deer damage before they start eating your plants.  If deer population is heavy rotate three different sprays.  By starting early in the season, as tulips push up their green leaves, the deer are discourage because they do not like the smell from the beginning of the season.</font>"
entryContent[2] = "<font face=\"Georgia\" size=\"2\">If you want to cut flowers from the garden on a hot sunny day immerse flowers immediately in HOT water.</font>"
entryContent[3] = "<font face=\"Georgia\" size=\"2\">Summer mulch suppresses weeds and preserves moisture in the soil. Water garden very well before putting down a mulch of 3-4 inches. Do not push mulch right up to the plant.  Leave air space around the crown (stems) of approximately 1.5”. </font>"
entryContent[4] = "<font face=\"Georgia\" size=\"2\">A very root bound plant should be soaked 1/2 an hour in a mild organic fertilizer before planting.  Loosen roots or make a vertical slice down two sides of the pot to allow new roots to grow out.</font>"
entryContent[5] = "<font face=\"Georgia\" size=\"2\">In the North mulch your garden for winter protection after a hard frost.  The objective is to keep the ground consistently frozen all winter.</font>"

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

document.write (selectedContent)