<!--
function ord ()
{
var ar = new Array(6)
ar[0] = "For I am a bear of very little brain, and long words bother me."
ar[1] = "... or my name's not Winnie-the-Pooh. Which it is. So there you are."
ar[2] = "That's just what I ask myself. I ask myself, what?"
ar[3] = "If bears were bees, they'd build their nests at the bottom of trees."
ar[4] = "Some have brains and some haven't"
ar[5] = "My spelling is wobbly. It's good spelling, but it wobbles, and the letters get in the wrong places."
var now = new Date()
var sec = now.getSeconds()
document.write(ar[sec % 6])
}

ord();
//-->
