function createad() {
        this.width = ''
        this.height = ''
        this.src = ''
        this.href = ''
        this.border = ''
        this.mouseover = ''
        this.sponsor = ''
}

ads = new Array()
for(var i=1; i<=7; i++) { ads[i] = new createad() }



ads[1].width = "322"
ads[1].height = "75"
ads[1].src = "http://www.kenora.ca/museum/images/btn/rowers.jpg"
ads[1].href = "http://www.kenora.ca/museum/history/general/general.aspx?id=1671"
ads[1].border = "0"
ads[1].alt = "Find out about Kenora's history"

ads[2].width = "322"
ads[2].height = "75"
ads[2].src = "http://www.kenora.ca/museum/images/btn/Building_menu.jpg"
ads[2].href = "http://www.kenora.ca/museum/history/social/social.aspx?id=1679"
ads[2].border = "0"
ads[2].alt = "The scene of the crime."

ads[3].width = "322"
ads[3].height = "75"
ads[3].src = "http://www.kenora.ca/museum/images/btn/Golf_Menu.jpg"
ads[3].href = "http://www.kenora.ca/museum/history/sports/sports.aspx?id=1685"
ads[3].border = "0"
ads[3].alt = "Explore the histroy of golf in the Kenora area."

ads[4].width = "322"
ads[4].height = "75"
ads[4].src = "http://www.kenora.ca/museum/images/btn/Boat_Menu.jpg"
ads[4].href = "http://www.shopkenora.ca/museum/"
ads[4].border = "0"
ads[4].alt = "Purchase merchadise, and other interesting articles at our gift shop."

ads[5].width = "322"
ads[5].height = "75"
ads[5].src = "http://www.kenora.ca/museum/images/btn/Guys_Menu.jpg"
ads[5].href = "http://www.kenora.ca/museum/history/social/social.aspx?id=1679"
ads[5].border = "0"
ads[5].alt = "Learn about the people that helped to make Kenora what it is today."

ads[6].width = "322"
ads[6].height = "75"
ads[6].src = "http://www.kenora.ca/museum/images/btn/Horse_Menu.jpg"
ads[6].href = "http://www.kenora.ca/museum/history/sports/sports.aspx?id=1686"
ads[6].border = "0"
ads[6].alt = "Racing horses on the ice was fun for all involved."

ads[7].width = "322"
ads[7].height = "75"
ads[7].src = "http://www.kenora.ca/museum/images/btn/Grace_Anne_Menu.jpg"
ads[7].href = "../../../../../../museum/history/boats/boats.aspx?id=1695"
ads[7].border = "0"
ads[7].alt = "The Grace Anne 2 was a sight to behold."



var n = Math.random() + ''
n = parseInt(n.charAt(7))
if(n >7) {
        n = n - 7
}
else if(n==0) {
        n = n + 7
}
n += ""

var image = ads[n]
var adhot = ""
adhot += '<a href="' + image.href + '" >'
adhot += '<img src="' + image.src + '" width=' + image.width
adhot += '\n height=' + image.height + ' border=' + image.border + ' alt="' + image.alt + '"></a>'

