<!-- Begin
var Message="Welcome to Jason's Hill Private Cellar                   ";
var place=1;
function pxd(pos){ 
  eval("parent.location='?pos="+pos+"'");
}
function scrollIn() {
window.status=Message.substring(0, place);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollOut()",3000); <!-- Tyd hoe lank message bly voor dit uit scroll
} else {
place++;
window.setTimeout("scrollIn()",150); <!-- Tyd hoe lank dit vat om die meassage te tik.... in te scroll
   } 
}
function scrollOut() {
window.status=Message.substring(place, Message.length);
if (place >= Message.length) {
place=1;
window.setTimeout("scrollIn()", 500);
} else {
place++;
window.setTimeout("scrollOut()", 100);<!-- Tyd hoe lank message uit scroll
   }
}
scrollIn()
// End -->
