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

entryContent[0] = "<p><strong>Madison Fire Station #12 Receives LEED Platinum Certification</strong></p> City of Madison Fire Station #12 has become only the 2nd in the country to receive LEED Platinum certification. Avant Gardening &amp; Landscaping was responsible for the design and installation of a <a href=\"http://www.liveroof.com/\" target=\"_blank\">LiveRoof</a>, which in conjunction with other design elements has created one of the country's most environmentally sensitive fire stations. Read more about it <a href=\"http://www.cityofmadison.com/news/view.cfm?news_id=1883\" target=\"_blank\">here</a>!"
entryContent[1] = "<p><strong>Avant Blog</strong></p> <p>Learn from the pros with Avant Gardening &amp; Landscaping's <a href=\"http://www.avantlandscaping.wordpress.com/\" target=\"_blank\">Garden Blog</a>! Professionals with over 70 years of experience share their knowledge and tips with you 24x7.&nbsp;</p> <p> Still yearning for more? Our <a href=\"newsletter/index.html\">Newsletter</a> provides comprehensive information on an abundance of topics of interest to the modern gardener!</p>"
entryContent[2] = " <p><strong>Fall Plant Sale</strong></p> <p>All in-stock nursery stock at Avant is now 30% off with any installation project.</p><p>Fall is a great season to plant.  Give your plant beds a makeover or add some color to brighten up your yard.</p><p>Call us today for a free consultation. 608-838-2054</p>"

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

document.write (selectedContent)
