

// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
function create() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}
ads = new Array()
for(var i=1; i<=9; i++) { ads[i] = new create() }

ads[1].width = "210"
ads[1].height = "48"
ads[1].src = "http://simplygoodstuff.com/_images/new_revitalizing2.jpg"
ads[1].href = "http://www.simplygoodstuff.com/mistfountain_revitalizingzone.html"
ads[1].border = "0"
ads[1].mouseover = "Revitalizing Zone Mist Fountain"

ads[2].width = "210"
ads[2].height = "48"
ads[2].src = "http://simplygoodstuff.com/_images/new_dinnerplate.jpg"
ads[2].href = "http://simplygoodstuff.com/littlehusks_dinnerplate.html"
ads[2].border = "0"
ads[2].mouseover = "Little Husks Dinner Plate for Kids"

ads[3].width = "210"
ads[3].height = "48"
ads[3].src = "http://simplygoodstuff.com/_images/new_soupbowl.jpg"
ads[3].href = "http://www.simplygoodstuff.com/littlehusks_soupbowl.html"
ads[3].border = "0"
ads[3].mouseover = "Little Husks Soup Bowl for Kids"

ads[4].width = "210"
ads[4].height = "48"
ads[4].src = "http://simplygoodstuff.com/_images/new_bathsheet.jpg"
ads[4].href = "http://www.simplygoodstuff.com/microfiber_bathsheet.html"
ads[4].border = "0"
ads[4].mouseover = "Microfiber Bath Sheets"

ads[5].width = "210"
ads[5].height = "48"
ads[5].src = "http://simplygoodstuff.com/_images/new_evritwist.jpg"
ads[5].href = "http://www.simplygoodstuff.com/evritwist_opener.html"
ads[5].border = "0"
ads[5].mouseover = "Evri-Twist Medicine Bottle Opener"

ads[6].width = "210"
ads[6].height = "48"
ads[6].src = "http://simplygoodstuff.com/_images/new_squeegee.jpg"
ads[6].href = "http://simplygoodstuff.com/shower_squeegee.html"
ads[6].border = "0"
ads[6].mouseover = "Shower Squeegee"

ads[7].width = "210"
ads[7].height = "48"
ads[7].src = "http://simplygoodstuff.com/_images/new_evrisink.jpg"
ads[7].href = "http://simplygoodstuff.com/evrisink_strainer.html"
ads[7].border = "0"
ads[7].mouseover = "Evri-Sink Strainer"

ads[8].width = "210"
ads[8].height = "48"
ads[8].src = "http://simplygoodstuff.com/_images/new_cornzipper.jpg"
ads[8].href = "http://simplygoodstuff.com/corn_zipper.html"
ads[8].border = "0"
ads[8].mouseover = "Kuhn Rikon Corn Zipper"

ads[9].width = "210"
ads[9].height = "48"
ads[9].src = "http://simplygoodstuff.com/_images/new_swooz.jpg"
ads[9].href = "http://simplygoodstuff.com/swooz.html"
ads[9].border = "0"
ads[9].mouseover = "Fuzzy Wuzzy Swooz"


var n = Math.random() + ''
n = parseInt(n.charAt(9))
if(n >9) {
        n = n - 9
}
else if(n==0) {
        n = n + 9
}
n += ""

var image = ads[n]
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>' + '</a>'




