// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}
smads = new Array()
for(var i=1; i<=8; i++) { smads[i] = new create() }

smads[1].width = "226"
smads[1].height = "226"
smads[1].src = "images/Ingrams Karate.jpg"
smads[1].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=33"
smads[1].border = "0"
smads[1].mouseover = "Click here to visit the Ingram's Karate website"
smads[1].sponsor = ""

smads[2].width = "226"
smads[2].height = "226"
smads[2].src = "images/AURA.jpg"
smads[2].href = "http://carrollwoodvillage.com/buscat.asp?catid=59"
smads[2].border = "0"
smads[2].mouseover = "Click here"
smads[2].sponsor = ""

smads[3].width = "226"
smads[3].height = "226"
smads[3].src = "images/Providence.jpg"
smads[3].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=49"
smads[3].border = "0"
smads[3].mouseover = "Click here to visit the Providence Door Repair website"
smads[3].sponsor = ""

smads[4].width = "226"
smads[4].height = "226"
smads[4].src = "images/Times.jpg"
smads[4].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=12"
smads[4].border = "0"
smads[4].mouseover = "Click here to visit the St. Petersburg Times website"
smads[4].sponsor = ""

smads[5].width = "226"
smads[5].height = "226"
smads[5].src = "images/Frank Marino.jpg"
smads[5].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=6"
smads[5].border = "0"
smads[5].mouseover = "Click here to visit the Universal Realty website"
smads[5].sponsor = ""

smads[6].width = "226"
smads[6].height = "226"
smads[6].src = "images/Kabay_VillageViewsAd.jpg"
smads[6].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=61"
smads[6].border = "0"
smads[6].mouseover = "Click here to visit Kabay website"
smads[6].sponsor = ""

smads[7].width = "226"
smads[7].height = "226"
smads[7].src = "images/Tampa_Contract_Floors-web_ad.jpg"
smads[7].href = "http://carrollwoodvillage.com/buscat.asp?catid=25 "
smads[7].border = "0"
smads[7].mouseover = "Click here to visit the area's largest selection of flooring products"
smads[7].sponsor = ""

var image = smads[Math.floor(Math.random()*7) + 1]

var smad = ""
smad += '<a href="' + image.href + '" \n'
smad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
smad += 'onMouseOut="self.status=\'\'"> \n'
smad += '<img src="' + image.src + '" width=' + image.width
smad += '\n height=' + image.height + ' border=' + image.border
smad += '\n><br>' + image.sponsor + '</a>'

ads = new Array()
for(var i=1; i<=4; i++) { ads[i] = new create() }

ads[1].width = "472"
ads[1].height = "364"
ads[1].src = "images/sperCVwebad6-05.jpg"
ads[1].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=6 "
ads[1].border = "0"
ads[1].mouseover = "Click here to visit the Cindy Sper Realty website"
ads[1].sponsor = ""

ads[2].width = "472"
ads[2].height = "386"
ads[2].src = "images/ColdwellBanker.jpg"
ads[2].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=6"
ads[2].border = "0"
ads[2].mouseover = "Click here to visit the Coldwell Banker website"
ads[2].sponsor = ""

ads[3].width = "472"
ads[3].height = "375"
ads[3].src = "images/ClassicMartialART52106.jpg"
ads[3].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=33"
ads[3].border = "0"
ads[3].mouseover = "Click here to visit the Classic Martial Art website"
ads[3].sponsor = ""

ads[4].width = "472"
ads[4].height = "431"
ads[4].src = "images/EG.jpg"
ads[4].href = "http://www.carrollwoodvillage.com/buscat.asp?catid=8 "
ads[4].border = "0"
ads[4].mouseover = "Click here to visit the Emerald Greens website"
ads[4].sponsor = ""

var n2 = Math.floor(Math.random()*4) + 1

var image = ads[n2]
var ad = ""
ad += '<a href="' + image.href + '" \n'
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
ad += 'onMouseOut="self.status=\'\'"> \n'
ad += '<img src="' + image.src + '" width=' + image.width
ad += '\n height=' + image.height + ' border=' + image.border
ad += '\n><br> ' + image.sponsor + '</a>'



