//marquee width (in pixels)
var marqueewidth=476
//marquee height (in pixels, pertains only to NS)
var marqueeheight=17
//marquee scroll speed (larger is faster)
var speed=3
//marquee contents 
var jscontent='<a class="scrollertxt" href="AboutNewsArticle9.html"> Drive for Life Everest Hurley Goes Under the Hammer..<b>more..</b></a>..<a class="scrollertxt" href="AboutNewsArticle8.html"> Drive For Life Comes to a Close..<b>more..</b></a> <a class="scrollertxt" href="Everest.html">Read Dave Crowley`s account of the challenging fundraising hike to Everest Base Camp..<b>more..</b></a>..<a class="scrollertxt" href="AboutNewsArticle5.html">Congratulations to Pat Falvey and the Irish Everest Conquering Team</a>.. <a class="scrollertxt" href="AboutNewsArticle4.html">Fundraising Trek to Base Camp, Mount Everest</a>..';
var marqueecontents= jscontent;
/************************************************************************************
Value to preserve onload status
************************************************************************************/
var oldOnLoad;
oldOnLoad=window.onload;


if (document.all)
document.write('<div id="cmarquee01"><marquee scrollAmount='+speed+' style="width:'+marqueewidth+' ">'+marqueecontents+'</marquee></div>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",550)
intializemarquee()
}

if (oldOnLoad!=null) oldOnLoad();
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>')
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.width
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}

window.onload=regenerate2

