var speed=4500
var news=new Array()
<!-- default speed is 4.5 seconds,  Change that as desired 
news[0]="<a href='http://demonhale.tripod.com'><font color='#cc9900'>Demonhale™ a.k.a. CHRYMO™</font><\/a>"
news[1]="<a href='http://demonhale.tripod.com'><font color='#cc9900'>is a Web and Graphics Development Site</font></a>"
news[2]="<a href='http://demonhale.tripod.com'>Employing the Latest in CSS, Javascript, DHTML, XHTML and HTML Technology</a>"
news[3]="<a href='http://demonhale.tripod.com'>Contact us through e-mail: <font color='#cc9900'>demonhale@yahoo.com</font></a>"
news[4]="<a href='http://demonhale.tripod.com'>Here are our influences: Click these Box to direct you to their pages</a>"
news[5]="<a href='http://www.dynamicdrive.com'>Click here to go to Dynamic Drive's front page</a>"
news[6]="<a href='http://www.javascriptkit.com'>Visit JavaScript Kit for free JavaScripts!</a>"
news[7]="<a href='http://demonhale.tripod.com'>Hope we can Work with You Soon</a>"
news[8]="<a href='http://demonhale.tripod.com'>This Sites PR for the Moment is 3</a>"
news[9]="<a href='http://demonhale.tripod.com'>Link to Us; Exchange Links</a>"
news[10]="<a href='http://demonhale.tripod.com'><font color='white'>Have a Nice Day !!!</font></a>"
news[11]="<a href='http://demonhale.tripod.com'>To have your ADS here or anywhere on the Page, contact us</a>"

/* expand or shorten this list of messages as desired, end Script here */
var fadescheme=0 /* set 0 to fade bgcolor from (white to black), 1 for (black to white) */
var hex=(fadescheme==0)? 255 : 0
var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(000,000,000)"
var endcolor=(fadescheme==0)? "rgb(000,000,000)" : "rgb(255,255,255)"
var frame=20;

var ie=document.all
var ns6=document.getElementById
var ns4=document.layers

i=0
tickerobject=ie? subtickertape: ns6? document.getElementById("subtickertape") : document.tickertape.document

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers)
setTimeout("window.onresize=regenerate",450)
}

function bgcolorfade() {	         	
/* 20 frames fading process */
if(frame>0) {	
hex=(fadescheme==0)? hex-12 : hex+12 /* increase or decrease color value depd on fadescheme */
tickerobject.style.backgroundColor="rgb("+hex+","+hex+","+hex+")"; /* Set color value. */
frame--;
setTimeout("bgcolorfade()",20);	
}
else{
tickerobject.style.backgroundColor=endcolor;
frame=20;
hex=(fadescheme==0)? 255 : 0
}   
}
// End -->

<!-- What
function updatecontent(){
if (ie||ns6)
bgcolorfade()
if (ns4){
tickerobject.subtickertape.document.write('<span class="subtickertapefont">'+news[i]+'</span>')
tickerobject.subtickertape.document.close()
}
else 
tickerobject.innerHTML=news[i]

if (i<news.length-1)
i++
else
i=0
setTimeout("updatecontent()",speed)
}

/* Fading Ticker Tape Script- © Dynamic Drive (www.dynamicdrive.com) and CHRYMO™ 
This notice must stay intact for use with Source also copied from demonhale™
 Visit our influence http://www.dynamicdrive.com/ for full source code */
// End -->