var tWidth='100%';                     // width (in pixels)
var tHeight='20';                      // height (in pixels)
var tcolor='#C3DD64';                  // background color
var fcolor='#2E7709';                  // font color
var fsize='12'                         // font size (in pixels)
var mbottom='10'                       // margin-bottom (in pixels)
var moStop=true;                       // pause on mouseover (true or false)
var fontfamily='verdana,sans-serif';   // font for content
var tSpeed=15;                          // scroll speed (1 = fast, 50 = slow)


// enter your ticker content here (use \/ and \' in place of / and ' respectively)

var content='Updated 12 June 2010 :: <b>JUNE ROADSHOWS</b> <i>see below</i> :: <b>FINAL PLAN DATES</b> <i>see below</i>';

// 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=1;
var aw, mq;

function startticker(){
if (document.getElementById) {
var tick = '<div id="outerDIV" style="position:relative;width:'+tWidth+';height:'+tHeight+';overflow:hidden;background-color:'+tcolor+';margin-bottom:'+mbottom+'px;"'; if (moStop) tick += ' onmouseover="cps=0" onmouseout="cps=1"'; tick +='><div id="mq" style="position:absolute;left:0px;top:0px;font-family:'+fontfamily+';font-size:'+fsize+'px;line-height:'+tHeight+'px;color:'+fcolor+';white-space:nowrap;"><\/div><div id="latestinfo" style="position:absolute;top:0px;left:0px;width:165px;height:'+tHeight+'px;background-color:'+fcolor+';font-size:'+fsize+'px;font-weight:bold;color:white;line-height:'+tHeight+'px;padding-left:5px;">LATEST INFORMATION:<\/div><\/div>'; 

document.getElementById('ticker').innerHTML = tick; 
mq = document.getElementById("mq"); 
mq.style.left=(document.getElementById("outerDIV").offsetWidth); 
mq.innerHTML='<span id="tx">'+content+'<\/span>'; 
aw = document.getElementById("tx").offsetWidth; 
lefttime=setInterval("scrollticker()",tSpeed);
}
} 


function scrollticker(){
mq.style.left = (parseInt(mq.style.left)>(-10 - aw)) ?parseInt(mq.style.left)-cps+"px" : (document.getElementById("outerDIV").offsetWidth);
} 

window.onload=startticker;
                  