$(document).ready(function(){
    $('.barristerlink').hover(
        function(){ 
            var content;
            content = $('.' + $(this).attr('id')).html();
            $('#footercont').html(content);                                         
        },
        function () {
            // do nothing for now
        }
    ); 
    $('.barristerhoverlink').hover(
        function(){
            $.ajax({
               url: "/index.php/ajax/barristercv/" + $(this).attr('id'),
               dataType: "html",
               success: function(data){
                 $('#footercont').html(data);                 
               }
             });             
        },
        function () {
            // do nothing for now
        }
    );   
});

