$(function() {
    $("ul#messages").hide();
    $("ul#messages li").each(function() {
        $.noticeAdd({
            text: $(this).html(),
            stayTime: 6000
        });
    });
});