$(document).ready(function(){
	var speed = 1000;
	var pause = 4000;
	function newsticker()
	{
	    last = $('div#tickertape p:last').hide().remove();
	    $('div#tickertape').prepend(last);
        $('div#tickertape p:first').slideDown("slow");
	}
	interval = setInterval(newsticker, pause);
});