// JavaScript Document
<!--
// This script was found at the JavaScript Place. http://www.javaplace.co.uk
var text="m s . j a m i e . / a m i r a g e . n e w . d v d . t h e  . b e s t . o f . g e t . n o w . o n l y . $9.99"
var speed =100

var x = 0
function bb() {
var a = text.substring(0,x)
var b = text.substring(x,x+1).toUpperCase()
var c = text.substring(x+1,text.length)
window.status = a + b + c
if (x == text.length) {
x = 0
}
else {
x++
}
setTimeout("bb()",speed)
}
bb();
//-->
