var hdrState = 0; function locsAppear() { switch(hdrState) { case 0 : hdrState++; // no pause here, drop thru to next state case 1 : $('denison').style.visibility = 'visible'; break; case 2 : $('okoff').style.visibility = 'visible'; break; case 3 : $('durant').style.visibility = 'visible'; break; case 4 : $('mcalester').style.visibility = 'visible'; break; case 5 : new Effect.Highlight( 'Header_bkgrd_w_stoke_blue', { duration: 5, // pure red: startcolor: '#ff0000', startcolor: '#db0f27', // matches sidebar: endcolor: '#0000ff' }); break; case 6 : setTimeout( "$('FlashID2').style.visibility='hidden';$('introStage').style.visibility='hidden';" + "$('FlashID2').style.display='none';$('introStage').style.display='none';getTwwsMainContentEntries();", 39000); break; // new default : break; } // end switch(hdrState) hdrState++; } window.onload = function() { new Effect.Appear('mobleyTitle', { duration: 3, from: 0, to: 1, fps: 24, transition: function (pos) { return (- Math.cos(pos * Math.PI) / 2) + 0.5; // sinoidal, believed deafult } }); // timeout settings of 2000 here cause > 50% error rate on IE6 for locsAppear() setTimeout("new PeriodicalExecuter(locsAppear, 1)",2500); }