$(function() {

$.ajaxSetup({'beforeSend': function(XMLHttpRequest) {
  XMLHttpRequest.setRequestHeader('X-Referer',document.location);
}});
    $('.wp-img').click(function() {
        $.post('/', {'winner': '0', 'article_id': $(this).attr('article_id'),'lol':lol}, function(response_data) {
            $('#content').html(response_data);
        });
    });
    
    $('.predator-img').click(function() {
        $.post('/', {'winner': '1', 'article_id': $(this).attr('article_id'),'lol':lol}, function(response_data) {
            $('#content').html(response_data);
        });
    });
});
