/* Fading Scroller - By DynamicDrive.com */
var delay=2000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="Verdana, Helvetica, Tahoma, Arial, Sans-Serif"><center>'
fcontent[0]="<span style=font-size:24px;font-weight:bold>Globally Recognized</span><br><span style=font-size:18px>Most Popular Realistic Games</span><br><span style=font-size:15px;font-weight:bold>FUN, FUN, FUN around the clock!</span>"
fcontent[1]="<span style=font-size:24px;font-weight:bold>Best Games!</span><br><span style=font-size:18px;font-weight:bold>Realistic 3D Graphics</span><br><span style=font-size:15px;font-weight:bold>Free and Fast Download!</span>"
fcontent[2]="<span style=font-size:24px;font-weight:bold>Over $2 BILLION</span><br><span style=font-size:18px;font-weight:bold>in REAL MONEY bets</span><br><span style=font-size:15px;font-weight:bold>from 189 countries since 1997!</span>"
fcontent[3]="<span style=font-size:24px;font-weight:bold>Best Promotions!</span><br><span style=font-size:18px;font-weight:bold>New Games Every Month Guaranteed!</span><br><span style=font-size:15px;font-weight:bold>The FUN never stops!</span>"
fcontent[4]="<span style=font-size:24px;font-weight:bold>Top Bonuses and Rewards!</span><br><span style=font-size:18px;font-weight:bold>Licensed and Regulated since 1997</span><br><span style=font-size:15px;font-weight:bold>Audited Gaming Odds</span>"
fcontent[5]="<span style=font-size:24px;font-weight:bold>Super Fast Payouts!</span><br><span style=font-size:18px;font-weight:bold>Higher Payout Ratios</span><br><span style=font-size:15px;font-weight:bold>Reliable and Secure!</span>"
fcontent[6]="<span style=font-size:24px;font-weight:bold>Instant Withdrawals!</span><br><span style=font-size:18px;font-weight:bold>Full Line of Payment Methods</span><br><span style=font-size:15px;font-weight:bold>All Currencies Accepted!</span>"
fcontent[7]="<span style=font-size:24px;font-weight:bold>Biggest and Best</span><br><span style=font-size:18px;font-weight:bold>International Online Casino</span><br><span style=font-size:15px;font-weight:bold>The EXCITEMENT never ends!</span>"
fcontent[8]="<span style=font-size:24px;font-weight:bold>Wild Card Casino<span style=font-weight:normal>&#153;</span></span><br><span style=font-size:18px;font-weight:bold>The Best Gambling Online</span><br><span style=font-size:15px;font-weight:bold>SIGN UP NOW!</span>"
closetag='</center></font>'

var fwidth=400 //set scroller width
var fheight=60 //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=2500

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(255,255,0)"
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=19;
rhex=255  // Initial r color value.
ghex=117  // Initial g color value.
bhex=0  // Initial b color value.

function colorfade() {
if(frame>0) {	
rhex-=11.3; // decrease r color value
ghex-=9.9; // decrease g color value
bhex-=7.4; // decrease b color value
document.getElementById("fscroller").style.color="rgb("+rhex+","+ghex+","+bhex+")"; // Set color value.
frame--;
setTimeout("colorfade()",19);
}
else{
document.getElementById("fscroller").style.color="rgb(255,255,255)";
frame=19;
rhex=255
ghex=117
bhex=0 }   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:0px"></div>')

window.onload=changecontent