// Wm - zuss.com
var chat=new Array(' ','Hi..','You\'re not searchin for a coffin, are you?','No, no coffins here..',' ');
var current=0;function talk(){if (document.getElementById){
document.getElementById('hi').firstChild.nodeValue=chat[current];}
current++;if (current==5){
document.getElementById('hi').style.display='none';clearTimeout(cK);
return null;}cK=setTimeout('talk()',3000);}window.onload=talk();