$(function() {
    $("#messages .message a").click(function() {
        $(this).parent().fadeOut();
        return false;
    });
});
