// JavaScript Document


window.onload = function () {
    var random_img = document.getElementById('random_img');
    var pictures = new Array('images/quote_11.jpg','images/quote_12.jpg','images/quote_13.jpg','images/quote_14.jpg','images/quote_15.jpg');
    var numPics = pictures.length;
    if (document.images) {
        var chosenPic = Math.floor((Math.random() * numPics));
        random_img.style.background = 'url(' + pictures[chosenPic] + ')';
    }
}

