/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
<!-- Hide script from old browsers

adImages = new Array("images/breakfastroom.jpg", "images/charlotte1.jpg", 
    "images/garden.jpg", "images/amelia2.jpg", "images/garden1.jpg", "images/sophia2.jpg", "images/charlotte.jpg","images/garden3.jpg")
mroomImages = new Array("images/meetingroom.jpg", "images/meetingroom2.jpg", "images/meetingroom3.jpg", 
    "images/meetingroom.jpg", "images/meetingroom2.jpg", "images/meetingroom3.jpg", "images/meetingroom.jpg", "images/meetingroom2.jpg")
thisAd = 0
imgCt = adImages.length

function rotate() {
    if (document.images) {
        thisAd++
        if (thisAd == imgCt) {
            thisAd = 0
        }
        document.adBanner.src=adImages[thisAd]
        <!--document.MRoom.src=mroomImages[thisAd]-->
        setTimeout("rotate()", 4 * 1000)
    }
}

            // End hiding script from old browsers -->

