//confirm helper
$(function() {
  // Confirm helper
  $('.confirm').click(function() {
    return confirm('Are you sure?');
  });
});
