if (ver4) window.onload = initIt;
var now = new Date()
var pcount = now.getSeconds()
function initIt(){
    if (NS4) {

        if (!document.elAll) return;
        elAll = document.elAll;
        elP = elAll.document.elP;
        elGif = elAll.document.elGif;
        imStr = "<IMG SRC='point.gif' HEIGHT="+boxHgt+" WIDTH="+boxWid+">"
        elGif.document.write(imStr);
        elGif.document.close();
    }
    else {
		if (IE4) {
        elP.style.filter = "revealTrans(duration=blendDur,transition=12)";
		}
    }
   // pcount = 0;
    if (finite) loopCount = 0;
    doIt();

    blendTimer = setInterval("doIt()",blendInt*1000)
}

function doIt() {
	var newsStr = "";
    if (finite && loopCount==maxLoops) {
        clearInterval(blendTimer);
        return;
    }
    if (NS4) elGif.top = 0;
	if (count > 0 && bWorking == true) {
    newsStr = "<div class=section><font color='#000000' size=1>"+ arP[pcount % 22][2] + "</font></div>";
	}
    if (NS4 && bWorking == true) {
        with (elP.document) {
            write(newsStr);
            close();
        }
    }
    else {
		if (IE4) {
        elP.filters.revealTrans.Apply();
        elP.innerHTML = newsStr;

        elP.filters.revealTrans.Play();
		}
    }
    pcount++;
    if (pcount == arP.length) {
        pcount=0;
        if (finite) loopCount++;
    }
    if (NS4) slideIt();
}
function slideIt(){
    elGif.top += slideInc;
    if (elGif.top >= boxHgt) return;
    setTimeout("slideIt()",slideInt);
}
