var txt=['Love the video mail!!! <br/><b>- Dawn</b>',
'it is absolutely Fantastic and the simlicity of it is very good indeed.<br/><b>- Bob, UK</b>',
'Love mailVU! Use it all the time now, sharing with friends and fam.   <br/><b>- Robert</b>',
'I love this website. Its very easy to use and Its clean. <br/><b>- Dave</b>',
'Its cool! Its cool man!   <br/><b>- Ted</b>'
],
init=0,i=0,k=0,speed=15,el;
function fade(){
init==0?i++:i--;
el.innerHTML=txt[k];
if(i==100)init=1;
if(i==0) {init=0;k++;}
if(k==txt.length)k=0;
setTimeout('fade()',speed);}
window.onload=function(){el=document.getElementById('message');fade();}
