$(document).ready(function() {
  
  var myQuotes = [];
  
  myQuotes[0] = '"a digital democracy breakthrough". John Rentoul';
  myQuotes[1] = '"The beauty of this site is its simplicity." The Good Web Guide';
  myQuotes[2] = '"Vote Match... is helping to change the electoral landscape in Britain," Ekklesia';
  
  var myRandom = Math.floor(Math.random()*myQuotes.length);
  $('#quote').html(myQuotes[myRandom]);
})

