COSI ti funziona e ci puoi mettere quello che vuoi.
codice:
//css
#show2{ position:relative; height:50px; width:500px; }
#show2 p { position:absolute; left:0; top:0; }
//jquery
$(function(){
$('#show2 p:gt(0)').hide();
setInterval(function(){
$('#show2 > :first-child').fadeOut().next('p').fadeIn().end().appendTo('#show2');}, 3000);
});
//html
<div id="show2">
<p><a href="http://test-pesoforma-bmi.info#a_aid=51f0f012ad35f&a_bid=bbcc0fb1" target="_blank">
Sovrappeso? Clicca qui, fai il test e scopri il tuo peso forma è Gratis!</a></p>
<p>Guadagna subito 3 centesimi per ogni click con Facebook,Twitter,Google ecc</p>
</div>