/* Fading Scroller - By DynamicDrive.com */
var delay=2000 //set delay between message change (in miliseconds)
var fcontent=new Array()

begintag='<center><font face="Verdana, Helvetica, Tahoma, Arial, Sans-Serif"><b>'
fcontent[0]="<span style=font-size:24px>Over $2 BILLION</span><br><span style=font-size:14px>in REAL MONEY bets</span><br><span style=font-size:16px;font-weight:bold>from 189 countries since 1997!</span>"

fcontent[1]="<span style=font-size:24px>13 Million Games</span><br><span style=font-size:14px>Played Here Last Month</span><br><span style=font-size:16px>The FUN never stops!</span>"

fcontent[2]="<span style=font-size:24px>$44 Million Won</span><br><span style=font-size:14px;font-weight:bold>By Players Here Last Month</span><br><span style=font-size:16px;font-weight:bold>The EXCITEMENT never ends!</span>"

fcontent[3]="<span style=font-size:24px>SuperFast Payouts!</span><br><span style=font-size:14px;font-weight:bold>Reliable and Secure</span><br><span style=font-size:16px;font-weight:bold>No minimum purchase to play!</span>"

fcontent[4]="<span style=font-size:24px>No Cover Charge</span><br><span style=font-size:14px>Most Popular Realistic Games</span><br><span style=font-size:16px;font-weight:bold>FUN, FUN, FUN around the clock!</span>"

fcontent[5]="<span style=font-size:24px>Biggest and Best</span><br><span style=font-size:14px;font-weight:bold>International Online Casino</span><br><span style=font-size:16px;font-weight:bold>Millions served since 1997!</span>"
closetag='</b></font></center>'

fcontent[6]="<span style=font-size:24px>KINGS TOWER CASINO</span><br><span style=font-size:14px;font-weight:bold>The Best Gambling Online</span><br><span style=font-size:16px;font-weight:bold>SIGN UP NOW!</span>"

var fwidth=330 //set scroller width
var fheight=55 //set scroller height
var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=1500

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(88,75,108)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.
// Modified to utilize RGB colors by Dann Goddu for Grand Virtual, Inc.
frame=20;
rhex=88  // Initial r color value.
ghex=75  // Initial g color value.
bhex=108  // Initial b color value.

function colorfade() {
if(frame>0) {	
rhex+=8.35; // increase r color value
ghex+=9; // increase g color value
bhex+=7.35; // increase b color value
document.getElementById("fscroller").style.color="rgb("+rhex+","+ghex+","+bhex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);	
}
else{
document.getElementById("fscroller").style.color="rgb(255,255,255)";
frame=20;
rhex=88
ghex=75
bhex=108 }   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:0px"></div>')

window.onload=changecontent