// Quote Loader
function rotateQuotes() {
    var qMax = 69; 															    // Number of Quotes
    var qNum = "00" + parseInt(Math.floor(Math.random() * qMax) + 1);
    document.getElementById("quotebox").src = "quotes/q" + qNum.substring(qNum.length - 3) + ".html"; // quotes/qXXX.html
    setTimeout(function () { rotateQuotes(); }, 7000);
}
