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

myPix = new Array("amelia.jpg", "breakfastroom.jpg", "charlotte1.jpg", "charlotte.jpg", "garden.jpg", "garden1.jpg")
imgCt = myPix.length 

function choosePic() {
    if (document.images) {
        randomNum = Math.floor((Math.random() * imgCt))
        document.myPicture.src = myPix[randomNum]
    }
}

            // End hiding script from old browsers -->
        
