﻿function getRandomQuote() {
    document.getElementById("divRandomQuote").style.backgroundImage = 'url(library/images/quotes/quote_' + (Math.floor(Math.random() * 11) + 1) + '.jpg)';
}
