Try something like this:
$(document).ready(function () {
var interval = setInterval(function () {
$('#text').append('new text
');
$('#text p:last').fadeIn('slow');
}, 5000);
});
See the example here
If you want to kill the interval, can be doing this:
clearInterval(interval);
Greatings.