/*
Fading Ticker Tape Script- 
© Dynamic Drive (www.dynamicdrive.com)
Fading background color component by Dave Methvin, Windows Magazine
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/
//default speed is 4.5 seconds, Change that as desired
var speed=4500
var news=new Array()
news[0]="<a href='http://beam.to/shortcuts'>Welcome to the largest personal website ever created</a>"
news[1]="<a href='http://greatshortcuts.com/masterlinks77.html '>244,000 unique pages - designed just for YOU</a>"
news[2]="<a href='http://great-shortcuts.com/masterlinks.html'>Each of these is a hotlink</a>"
news[3]="<a href='http://doctordavidcohen.com/masters.html'>Click your way<BR> to extraordinary accomplishment</a>"
news[4]="<a href='page22.html>The Psychology of Shortcuts</a>"
news[5]="<a href='healthindex.html'>Cutting-edge knowledge to enhance your life.<BR><small>Health Index - Psychology of Longevity</small></a>"
news[6]="<a href='http://doctordavidcohen.com/shortcuts.html'>Shortcuts and more Shortcuts</a>"
news[7]="<a href='http://healmedoctor.com/index36.html.html'>Techniques &amp; words of extraordinary Winners</a>"
news[8]="<a href='http://biosyntonic.com/tribute.html'>911day - Heroes &amp; Friends</a>"
news[9]="<a href='http:/dirty-trial.s5.com'>20th Century's Dirtiest Trial </a>"
news[10]="<a href='georgewbush.html'>George W Bush - Public Statements</a>"
news[11]="<a href='letter.html'>Open Letter to US Congress</a>"
news[12]="<a href='critics.html'>Homage to a role model</a>"
news[13]="<a href='shorcuts.html'>More Success Shortcuts</a>"
news[14]="<a href='piano.html'>Play Piano in ONE lesson</a>"
news[15]="<a href='millionaires2000.html'>HOW many US millionaires?</a>"
news[16]="<a href='computershortcuts1.html'>Great Computer Shortcuts</a>"
news[17]="<a href='computershortcuts2.html'>Even more computer shortcuts</a>"
news[18]="<a href='keyboardshortcuts.html'>Keyboard Shortcuts</a>"
news[19]="<a href='failure.html'>Golden Losers</a>"
news[20]="<a href='viola.html'>So, you're too old?</a>"
news[21]="<a href='goals.html'>Goals and Success Shortcuts</a>"
news[22]="<a href='cybernetics.html'>The world's most sophisticated computer</a>"
news[23]="<a href='masterlinks2.html'>More Rainbow masterlinks</a>"
news[24]="<a href='science.html'>Even More Rainbow masterlinks</a>"
news[25]="<a href='science.html'>Never mind the art of Success<BR>This is the Science of Success</a>"
news[26]="<a href='important.html'>Think you don't count, huh?</a>"
news[27]="<a href='healthindex.html'>Superior Health Knowledge</a>"
news[28]="<a href='paychecks.html'>2000 paychecks, Baby</a>"
news[29]="<a href='millionaires2.html'>Millionaires II</a>"
news[30]="<a href='100grand.html'>Raising 100 grand ?!!</a>"
news[31]="<a href='willblythe.html'>Golden Losers II</a>"
news[32]="<a href='hunger.html'>Hunger.html</a>"
news[33]="<a href='cantfail.html'>Conquering Obstacles</a>"
news[34]="<a href='popcorn.html'>Golden Losers III</a>"
news[35]="<a href='computershortcuts3.html'>Computer Shortcuts III</a>"
news[36]="<a href='computershortcuts4.html'>Computer Shortcuts IV</a>"
news[37]="<a href='index46.html'>Chocolate EyeCandy</a>"
news[38]="<a href='current.html'>Current Events</a>"
news[39]="<a href='cybernetic.html'>Desire - Shortcuts to Success</a>"
news[40]="<a href='millionaires3.html'>Millionaires III</a>"

//expand or shorten this list of messages as desired

i=0
if (document.all)
tickerobject=document.all.subtickertape.style
else
tickerobject=document.tickertape.document
function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}

function update(){
 BgFade(0xff,0xff,0xff, 0x00,0x00,0x00,10);
if (document.layers){
document.tickertape.document.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
document.tickertape.document.subtickertape.document.close()
}
else 
document.all.subtickertape.innerHTML=news[i]

if (i<news.length-1)
i++
else
i=0
setTimeout("update()",speed)
}

 function BgFade(red1, grn1, blu1, red2,
 grn2, blu2, steps) {
 sred = red1; sgrn = grn1; sblu = blu1; 
 ered = red2; egrn = grn2; eblu = blu2; 
 inc = steps; 
 step = 0; 
 RunFader();
 }
 function RunFader() {
 var epct = step/inc; 
 var spct = 1 - epct; 
 if (document.layers)
 tickerobject.bgColor =
 Math.floor(sred * spct + ered *
 epct)*256*256 +
 Math.floor(sgrn * spct + egrn * epct)*256 +
 Math.floor(sblu * spct + eblu * epct); 
 else
 tickerobject.backgroundColor=
 Math.floor(sred * spct + ered *
 epct)*256*256 +
 Math.floor(sgrn * spct + egrn * epct)*256 +
 Math.floor(sblu * spct + eblu * epct); 
 if ( step < inc ) {
 setTimeout('RunFader()',50); 
 }
 step++;
 }
