<!--
var count = 0;
var delay = 250;
var text = "*************Copyright www.AmateurFacialsUk.com 2006************";
function  scroll () {
       window.status = text.substring (count, text.length) + text.substring (0, count)
        if (count < text.length)
                count ++;
        else
                count = 0;
        setTimeout ("scroll()", delay);
}
-->
