statusmsg = "Tanya's 2008 Toronto Trip - The Unofficial website                 "
n=0
function type() {
    window.status = statusmsg.substring(0,n)
    if (n < (statusmsg.length)) {
        n++
    } else {
        n = 0
    }
    setTimeout("type()",100)
}
type()