//<![CDATA[
$(document).ready(function() {
            panelHeight = $('#notice').css('height');
            panelHeight = parseInt(panelHeight);
            to = setTimeout('scrollNotice()', 4000);
        });

function scrollNotice() {
    i = 0;
    push = setTimeout('pushUp()', 50);
}

function pushUp() {
    --i;
    if(i < -20) {
        content = $('#notice h4').eq(0).html();
        $('#notice h4').eq(0).remove();
        $('#notice').append('<h4>'+content+'</h4>');
        setTimeout('scrollNotice()', 4000);
        return false;
    } else {
        $('#notice h4').eq(0).css('margin-top', i+'px');
        setTimeout('pushUp()', 50);
    }
}
    
//]]>

