function loadEditionAgree(date_reference) {
$.ajax({
url: 'http://www.theverseoftheday.info/edition_agree.php',
type: 'post',
data: 'verse_date_reference=' + date_reference,
success: function(response) {
$('.edition_container').html(response);
},
error: function() { $('.edition_container').html('There was an error. Try again.'); }
});
}  

function loadEditionDisagree(date_reference) {
$.ajax({
url: 'http://www.theverseoftheday.info/edition_disagree.php',
type: 'post',
data: 'verse_date_reference=' + date_reference,
success: function(response) {
$('.edition_container').html(response);
},
error: function() { $('.edition_container').html('There was an error. Try again.'); }
});
}  
