$(document).ready(function() {
  var current = new Date();
  $('.weekly_choices p').eq(current.getDay() - 1).addClass('today');
});

