// Wm - zuss.com
var current=0;function talk(){
var chat=new Array(' ','AHEM..','Say..','..is that you?','..No, is that really you?',' ');
if (document.getElementById){
document.getElementById('hi').firstChild.nodeValue=chat[current];}current++;
if (current==6){document.getElementById('hi').style.display='none';
clearTimeout(cK);return null;}
cK=setTimeout('talk()',3000);}window.onload=talk();