// JavaScript Document
// 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<=11; i++) { ads[i] = new create() }

ads[1].width = "564"
ads[1].height = "250"
ads[1].src = "http://www.leisurehotel.com/image-rotators/LSB-Ruidoso-Ext.jpg"
ads[1].href = "http://www.lodgeatsierrablanca.com/"
ads[1].border = "0"
ads[1].mouseover = "Lodge at Sierra Blanca - Ruidoso, New Mexico"
ads[1].sponsor = ""

ads[2].width = "564"
ads[2].height = "250"
ads[2].src = "http://www.leisurehotel.com/image-rotators/HGV-Branson-Ext.jpg"
ads[2].href = "http://www.hotelgrandvictorian.com"
ads[2].border = "0"
ads[2].mouseover = "Hotel Grand Victorian - Branson, Missouri"
ads[2].sponsor = ""

ads[3].width = "564"
ads[3].height = "250"
ads[3].src = "http://www.leisurehotel.com/image-rotators/Chase_Walker-Ext.jpg"
ads[3].href = "http://www.chaseonthelake.com"
ads[3].border = "0"
ads[3].mouseover = ""
ads[3].sponsor = ""

ads[5].width = "564"
ads[5].height = "250"
ads[5].src = "http://www.leisurehotel.com/image-rotators/Chase_Walker-Ext.jpg"
ads[5].href = "http://www.chaseonthelake.com/"
ads[5].border = "0"
ads[5].mouseover = "Chase on the Lake - Walker, Minnesota"
ads[5].sponsor = ""

ads[6].width = "564"
ads[6].height = "250"
ads[6].src = "http://hotels.leisurehotel.com/image-rotators/Hotel-Pattee-564x250.jpg"
ads[6].href = "http://www.hotelpattee.com"
ads[6].border = "0"
ads[6].mouseover = "Hotel Pattee - Perry, Iowa"
ads[6].sponsor = ""

ads[8].width = "564"
ads[8].height = "250"
ads[8].src = "http://www.leisurehotel.com/image-rotators/HolidayInn-Olathe-Ext.jpg"
ads[8].href = "http://www.hiolathe.com"
ads[8].border = "0"
ads[8].mouseover = "Holiday Inn  - Olathe, Kansas"
ads[8].sponsor = ""

ads[9].width = "564"
ads[9].height = "250"
ads[9].src = "http://www.leisurehotel.com/image-rotators/HI-KCI-Airport.jpg"
ads[9].href = "http://www.hikciairport.com"
ads[9].border = "0"
ads[9].mouseover = "Holiday Inn - KCI Airport"
ads[9].sponsor = ""

ads[10].width = "564"
ads[10].height = "250"
ads[10].src = "http://www.leisurehotel.com/image-rotators/Newopeningimage.jpg"
ads[10].href = "http://www.hikciairport.com"
ads[10].border = "0"
ads[10].mouseover = "Leisure Hotels & Resorts - Hotel Management Companies"
ads[10].sponsor = ""

ads[11].width = "564"
ads[11].height = "250"
ads[11].src = "http://www.leisurehotel.com/image-rotators/HI-KCI-Lobby.jpg"
ads[11].href = ""
ads[11].border = "0"
ads[11].mouseover = "Holiday Inn - KCI Airport"
ads[11].sponsor = ""

var n = Math.random() + ''
n = parseInt(n.charAt(11))
if(n >11) {
        n = n - 11
}
else if(n==0) {
        n = n + 11
}
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>' + image.sponsor + '</a>'