<!-- Begin
var message = "I was surrounded by attractive, good Velvet Chefs, and all I had to do was act naturally...  Dr. Robert E."
var character = 0;
var to_print = "";
var ypos = 0;
var next = 0 ;
var fade = 100 ;
var next_message = new Array() ;
next_message[0] = "I know you won't believe this, but there were too many Velvet Chefs...  Eric Fender"
next_message[1] = "To go to a very cultered city, to meet 100's (or should that be 1000's) of beautiful Velvet Chefs who are just waiting to meet us, this is truely the experience of a lifetime...  Dennis G."
next_message[2] = "The parties were great, and the ratios were mind-boggling. Five or six Velvet Chefs per guy, and the girls were young and gorgeous...  Ben Whitehill"
next_message[3] = "I had a blast. I didn't get engaged, but that wasn't my objective on the first trip. I did get to meet 150 of the most beautiful Velvet Chefs I've ever seen in my life. I dated about 6 of them, which was too many,.. Paul W."
function doText(text) {
if (document.all) {
if (character <= text.length - 1) {
to_print += text.charAt(character);
teletext.innerHTML = to_print;
character++;
}
else
scrollIt();
}
setTimeout("doText(message)", 100);
}
function scrollIt() {
if (ypos >= -40) {
ypos -= 1;
fade -= 4;
if (ypos < -35) {
teletext.innerHTML = "" ;
   }
}
else {
ypos = 0;
character = 0;
to_print = "";
nextMessage();
fade = 100;
}
teletext.style.top = ypos;
teletext.filters.alpha.opacity = fade;
}
function nextMessage() {
message = next_message[next]
if (next == 4) {
next = 0;
}
else
next++;
}
//  End -->
