<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var current = 0
var x = 0
var speed = 100
var speed2 = 500

function initArray(n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

action = new initArray(5)
action[0]="Tiener"
action[1]="Gratis tienerseks"
action[2]="Tieners in aktie"
action[3]="Lesbiese tiener babes"
action[4]="Tieners zuigen je zak leeg"
function action2() {
var m = action[current]

window.status = m.charAt(x++)

if (x == m.length + 1) {
x = 0
current++
window.status = m

if (current > action.length - 1) {
current = 0
}

setTimeout("action2()", speed2)
}

else {
setTimeout("action2()", speed)
}
}

action2()

self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);
//-->



