$(document).ready(function() {
    $('#job_content').hide();
    $('#job_list li a').click(function() {
        //alert($(this).attr('class'));
        var id = $(this).attr('class');
        $('#job_content').show();
        $('#job_content').load('/recrutement/offre/xhr_job.php?id=' + id);
        return false;
    });
});
