// JavaScript Document

var tWidth='725px';                  // width (in pixels)
var tHeight='30px';                  // height (in pixels)
var tcolour='';               // background colour:
var moStop=true;                     // pause on mouseover (true or false)
var fontfamily = 'Arial Black'; // font for content
var tSpeed=3;                        // scroll speed (1 = slow, 5 = fast)

// enter your ticker content here (use \/ and \' in place of / and ' respectively)
var content='1) JEFF D. RPR 283.0  --  2) STEVE N. RPR 201.2  --  3) ANGELA S. RPR 188.5  --  4) DAVID G. RPR 187.2  --  5) GARY I. RPR 166.3 -- 6) JOHN M. RPR 163.6 -- 7) MEAGAN P. RPR 152.5 -- 8) DAVE W. RPR 150.5 -- 9) JIM G. RPR 147.1 -- 10) NIEL W. RPR 141.1 -- 11) ADI B. RPR 138.2 -- 12) KEITH R. RPR 136.5 -- 13) SAM F. RPR 135.2 -- 14) BILL D. RPR 128.3 -- 15) MIKE P. RPR 120.2 -- 16) JACK K. RPR 112.2 -- 17) KATHY C. RPR 111.7 -- 18) CHAD B. RPR 109.1 -- 19) NOEL V. RPR 107.0 -- 20) TAMMY H. RPR 106.9 -- 21) BOB F. RPR 104.9 -- 22) PETE B. RPR 99.1 -- 23) DIMITRY T. RPR 95.9 -- 24) JOHN H. RPR 90.7 -- 25) JEFF C. RPR 88.3';

// Simple Marquee / Ticker Script
// copyright 3rd January 2006, Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the below code in this script (including this
// comment) is used without any alteration
var cps=tSpeed; var aw, mq; var fsz = parseInt(tHeight) - 15; function startticker(){if (document.getElementById) {var tick = '<div style="position:relative;width:'+tWidth+';height:'+tHeight+';overflow:hidden;background-color:'+tcolour+'"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=tSpeed"'; tick +='><div id="mq" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily+';font-size:15px;white-space:nowrap; color:#bc6c23"><\/div><\/div>'; document.getElementById('ticker').innerHTML = tick; mq = document.getElementById("mq"); mq.style.left=(parseInt(tWidth)+10)+"px"; mq.innerHTML='<span id="tx">'+content+'<\/span>'; aw = document.getElementById("tx").offsetWidth; lefttime=setInterval("scrollticker()",30);}} function scrollticker(){mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : parseInt(tWidth)+10+"px";} window.onload=startticker;
                  
