// Wm - zuss.com
var chat=new Array();
chat[0]='Hi!';
chat[1]='Well hello..';
chat[2]='How are you today?';
chat[3]='I am fine, thank you.';
chat[4]='Do you come here often?';
chat[5]='Yes, I\'ve been here many times!';
chat[6]='So you like our stuff?';
chat[7]='I do! I\'m in love with your skirts and tops.';
chat[8]='Yeah we like them too.';
chat[9]='But I can\'t afford any of them.';
chat[10]='We know.. sorry.. very expensive.';
chat[11]='But someday... don\'t go away!';
chat[12]='No, we will be here. Waiting for you.';
chat[13]='Okay.. have to go now. Bye!';
chat[14]='Nice talking to you. See you!';
chat[15]=' ';
var current=0;
function talk(){
if (document.getElementById){
document.getElementById('hi').firstChild.nodeValue=chat[current];
}
current++;
if (current==16){
document.getElementById('hi').style.display='none';
clearTimeout(clock);
return null;
}
clock=setTimeout('talk()',3000);
}
window.onload=talk();