 <!-- Begin  news scroller -->

// change this to where you store the blank.gif image
 
var blank = "template/images/nav_sp_bk.gif";


topedge = 250;  // location of news box from top of page
leftedge = 1;  // location of news box from left edge
boxheight = 200;  // height of news box 180
boxwidth = 150;  // width of news box
scrollheight = 2; // total height of all data to be scrolled

function scrollnews(cliptop) {
if (document.layers) {
newsDiv = document.news;
newsDiv.clip.top = cliptop;
newsDiv.clip.bottom = cliptop + boxheight;
newsDiv.clip.left = 0;
newsDiv.clip.right = boxwidth + leftedge;
newsDiv.left = leftedge;
newsDiv.top = topedge - cliptop;
}
else {
newsDiv = news.style;
newsDiv.clip = "rect(" + cliptop + "px " + (boxwidth + leftedge) + "px " + (cliptop + boxheight) + "px 0px)";
newsDiv.pixelLeft = leftedge;
newsDiv.pixelTop = topedge - cliptop;
}
cliptop = (cliptop + 1) % (scrollheight + boxheight);
//newsDiv.visibility='visible';
//newsDiv.visibility='hidden';
//newsDiv.visibility='inherit';
setTimeout("scrollnews(" + cliptop + ")", 150);
// setTimeout("scrollnews(" + cliptop + ")", 50000);
// setTimeout("scrollnews(0)", 1150);
}
//  End <!--  scroller -->

