var classicpoohtitle1='* . Pooh Fun and Games * .';	// put frame 1 text
var classicpoohtitle2='. * Pooh Fun and Games. *';	// put frame 2 text
var classicpoohduration = 500;	// duration high = slower animation


step=0
function classicpoohtitle()
    {
      step++
      if (step==3) {step=1}
      if (step==1) {document.title=classicpoohtitle1}
      if (step==2) {document.title=classicpoohtitle2}
      setTimeout("classicpoohtitle()", classicpoohduration);
    }
classicpoohtitle()