$(function(){
    
    $('div a:contains(\'[x]\')').click(function(e){
        $(this).parent().hide('slow', function(){$(this).remove();});
        e.preventDefault();
    });
    
});