//    Script Editor:   Howard Chen
//    Browser Compatible for the script: IE 2.0 or Higher
//                                       Netscape 2.0 or Higher
//    This script is free as long as you keep its credits
var i = 0
var showString= 
"Office Hours 10-12 Noon Wednesday, 12/01/2010, 1st Floor Undergrad Library.  "
+"  "

function marquee()
{
var stringLength= showString.length
document.show.marquee1.value= document.show.marquee1.value +
showString.charAt(i)
i++
var timeID= setTimeout("marquee()",70)
if (i >= stringLength)
    {clearTimeout(timeID); i=0}

if (i >= stringLength)
 {clearTimeout(timeID); i=0}
}


