// JavaScript Document


window.onload = function () {
    var random_img = document.getElementById('random_img');
    var pictures = new Array('images/quote_6.jpg','images/quote_7.jpg','images/quote_8.jpg','images/quote_9.jpg','images/quote_10.jpg');
    var numPics = pictures.length;
    if (document.images) {
        var chosenPic = Math.floor((Math.random() * numPics));
        random_img.style.background = 'url(' + pictures[chosenPic] + ')';
    }
}

