var textRoll=function(){
$('#notice p:last').css({'height':'0px','opacity': '0'}).insertBefore('#notice p:first').animate({' height':'35px','opacity': '1'}, 'slow', function() { $(this).removeAttr('style');});
$(function(){
//Trigger context word scroll event
var roll=setInterval('textRoll()',4000);
$("#notice p").hover(function() {
clearInterval(roll);
to
});