// ************************************************************************************
// ** 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\">Prune Roses in the spring in the north, and in the fall in the south.</font>"
entryContent[1] = "<font size=\"2\" face=\"Georgia\">When your gardens are lacking in color, visit display gardens to see what perennials are in bloom. Plant some in your beds to add immediate color and to ensure blooms at the same time next year. By continuing to add flowering plants as the season goes on, you will eventually have a garden full of color &#8212; all season long!</font>"
entryContent[2] = "<font face=\"Georgia\" size=\"2\">Wet Soil: do not walk on very wet soil in the garden. The soil compaction that results suffocates the plant roots. In order to work in a very wet garden lay down a 6&#8221; wide board and walk on it.</font>"
entryContent[3] = "<font face=\"Georgia\" size=\"2\">A plant is only as good as the soil it grows in. Organic fertilizer feeds the soil that feeds the plants, thus enriching the environment that the plants grow in. Organic amendments in the soil encourage worms and other beneficial to come. Chemical fertilizers only feed the plant not the soil. </font>"
entryContent[4] = "<font face=\"Georgia\" size=\"2\">If it is cool and overcast, you may transplant seedlings very early in the morning. When it is hot and sunny, transplant late after noon so the plants have the cool night to acclimate.</font>"
entryContent[5] = "<font face=\"Georgia\" size=\"2\">Water transplants with a mild liquid organic fertilizer to give them a nutritional boost and avoid transplant shock. At Cider Hill we use Neptune Harvest fish and seaweed blend.</font>"

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

document.write (selectedContent)