var marqueewidthCMS="430px"
var marqueeheightCMS="15px"
var pauseitCMS=1
////NO NEED TO EDIT BELOW THIS LINE////////////
marqueespeedCMS=(document.all)? marqueespeedCMS : Math.max(1, marqueespeedCMS-1) //slow speed down by 1 for NS
var copyspeedCMS=marqueespeedCMS
var pausespeedCMS=(pauseitCMS==0)? copyspeedCMS: 0
var iedomCMS=document.all||document.getElementById
if (iedomCMS)
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontentCMS+'</span>')
var actualwidthCMS=''
var cross_marqueeCMS, ns_marqueeCMS

function populateCMS(){
if (iedomCMS){
cross_marqueeCMS=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
cross_marqueeCMS.style.left=parseInt(marqueewidthCMS)+8+"px"
cross_marqueeCMS.innerHTML=marqueecontentCMS
actualwidthCMS=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
}
else if (document.layers){
ns_marqueeCMS=document.ns_marqueeCMS.document.ns_marqueeCMS2
ns_marqueeCMS.left=parseInt(marqueewidthCMS)+8
ns_marqueeCMS.document.write(marqueecontentCMS)
ns_marqueeCMS.document.close()
actualwidthCMS=ns_marqueeCMS.document.width
}
lefttimeCMS=setInterval("scrollmarqueeCMS()",20)
}
window.onload=populateCMS

function scrollmarqueeCMS(){
if (iedomCMS){
if (parseInt(cross_marqueeCMS.style.left)>(actualwidthCMS*(-1)+8))
cross_marqueeCMS.style.left=parseInt(cross_marqueeCMS.style.left)-copyspeedCMS+"px"
else
cross_marqueeCMS.style.left=parseInt(marqueewidthCMS)+8+"px"

}
else if (document.layers){
if (ns_marqueeCMS.left>(actualwidthCMS*(-1)+8))
ns_marqueeCMS.left-=copyspeedCMS
else
ns_marqueeCMS.left=parseInt(marqueewidthCMS)+8
}
}

if (iedomCMS||document.layers){
with (document){
document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
if (iedomCMS){
write('<div style="position:relative;width:'+marqueewidthCMS+';height:'+marqueeheightCMS+';overflow:hidden">')
write('<div style="position:absolute;width:'+marqueewidthCMS+';height:'+marqueeheightCMS+';background-color:'+marqueebgcolorCMS+'" onMouseover="copyspeedCMS=pausespeedCMS" onMouseout="copyspeedCMS=marqueespeedCMS">')
write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidthCMS+' height='+marqueeheightCMS+' name="ns_marqueeCMS" bgColor='+marqueebgcolorCMS+'>')
write('<layer name="ns_marqueeCMS2" left=0 top=0 onMouseover="copyspeedCMS=pausespeedCMS" onMouseout="copyspeedCMS=marqueespeedCMS"></layer>')
write('</ilayer>')
}
document.write('</td></table>')
}
}