var selectedQuote = "";
var selectedTitle = "";
function getRandomQuote()
{
    index = Math.floor(Math.random() * quotesArray.length);
    var s = quotesArray[index];
    arr = s.split('|');
    return arr;
}

function getQuote(i)
{    
    var q = getRandomQuote();
    selectedQuote = q[0];
    selectedTitle = q[1];
}