    
    
    $(function()
        {
            $('#contestants .itemPic img').attr( 'alt' , ''); 
            $('#contestants .itemPic').tooltip({
                delay: 50,
                track: true, 
                showURL: false,
                top: 15, 
                left: 25, 
                bodyHandler: function() {
                    return $(this).siblings('.description').html();
                }
            });
            
            
            
        });