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 = "150"
ads[1].height = "190"
ads[1].src = "images/imageswap/aerosmith.jpg"
ads[1].href = "http://www.aeroforceone.com/"
ads[1].border = "0"
ads[1].mouseover = "Click here to visit Aerosmith OnLine"
ads[1].sponsor = "Aerosmith"

ads[2].width = "150"
ads[2].height = "228"
ads[2].src = "images/imageswap/beatles.jpg"
ads[2].href = "http://www.beatles.com"
ads[2].border = "0"
ads[2].mouseover = "Click here to visit The Beatles OnLine"
ads[2].sponsor = "The Beatles"

ads[3].width = "150"
ads[3].height = "209"
ads[3].src = "images/imageswap/zztop.jpg"
ads[3].href = "http://www.zztop.com"
ads[3].border = "0"
ads[3].mouseover = "Click here to visit ZZ Top OnLine"
ads[3].sponsor = "ZZ Top"

ads[4].width = "150"
ads[4].height = "205"
ads[4].src = "images/imageswap/tompetty.jpg"
ads[4].href = "http://www.tompetty.com"
ads[4].border = "0"
ads[4].mouseover = "Click here to visit Tom Petty OnLine"
ads[4].sponsor = "Tom Petty"

ads[5].width = "150"
ads[5].height = "197"
ads[5].src = "images/imageswap/plant2.jpg"
ads[5].href = "http://www.ledzeppelin.com"
ads[5].border = "0"
ads[5].mouseover = "Visit Led Zeppelin OnLine"
ads[5].sponsor = "Led Zeppelin"

ads[6].width = "150"
ads[6].height = "200"
ads[6].src = "images/imageswap/jimi2.jpg"
ads[6].href = "http://www.jimihendrix.com"
ads[6].border = "0"
ads[6].mouseover = "Visit Jimi Hendrix OnLine"
ads[6].sponsor = "Jimi Hendrix"

ads[7].width = "150"
ads[7].height = "205"
ads[7].src = "images/imageswap/acdc.jpg"
ads[7].href = "http://www.acdcrocks.com/"
ads[7].border = "0"
ads[7].mouseover = "Visit AC/DC OnLine"
ads[7].sponsor = "AC/DC"

ads[8].width = "150"
ads[8].height = "200"
ads[8].src = "images/imageswap/stones.jpg"
ads[8].href = "http://www.rollingstones.com"
ads[8].border = "0"
ads[8].mouseover = "Visit The Rolling Stones OnLine"
ads[8].sponsor = "Rolling Stones"

ads[9].width = "150"
ads[9].height = "203"
ads[9].src = "images/imageswap/jmorrison.jpg"
ads[9].href = "http://www.thedoors.com"
ads[9].border = "0"
ads[9].mouseover = "Click here to visit The Doors OnLine"
ads[9].sponsor = "The Doors"

var n = Math.random() + ''
n = parseInt(n.charAt(5))
if(n >9) {
        n = n - 5
}
else if(n==0) {
        n = n + 5
}
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><br>Official Site: ' + image.sponsor + '</a>'