// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/
var marqueewidth=155
var marqueeheight=300
var speed=3
//Specify the marquee contents
var marqueecontents='<center> \
<b><font color="#CC9933" size="4">DIAMOND</font></b><br /> \
<img src="/images/sponsors/vcstar07.gif" border="0" /><br /><br /> \
<a href="/executive.aspx"> \
<b><font color="#CC9933" size="4">PLATINUM</font></b><br /> \
<a href="/executive.aspx"> \
<img src="/images/sponsors/simivallyhospital_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/timewarner_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/boeing_sm.gif" border="0" /><br /> \
<img src="/images/sponsors/wastemanagement_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/ITSlogo2.png" border="0" /><br /><br /> \
</a> \
<br /><br /> \
<b><font color="#CC9933" size="4">GOLD</font></b><br /><br /> \
<a href="/executive.aspx"> \
<img src="/images/sponsors/moneymailer_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/alcoa_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/VintageSimiHills_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/wttn_sm.gif" border="0" /><br /> \
</a> \
<br /><br /> \
<b><font color="#CC9933" size="4">SILVER</font></b><br /><br /> \
<a href="/executive.aspx"> \
<img src="/images/sponsors/centuryaccounting_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/santabarbarabank_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/supercuts_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/SCE_sm.gif" border="0" /><br /><br /> \
<img src="/images/sponsors/Edward-Jones.gif" border="0" /><br /><br /> \
</a></center>'

function regenerate(){

window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}
function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}
function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2


