
// JavaScript Document

//scroller begin
//configure the below five variables to change the style of the scroller
var scrollerdelay='6000' //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='163px'
var scrollerheight='175px'

//configure the below variable to change the contents of the scroller
var messages=new Array()

var lpLabel = '<span id="LoyaltyPointLabel">Gold Nugget</span>';
var lpLabelPlural = '<span id="LoyaltyPointLabel_Plural">Gold Nuggets</span>';
messages[0]="<strong>Win a Custom Poker Table!</strong><p><a target=_blank href=\"http://www.USAGamingSupply.com\">USAGamingSupply.com</a> is giving away <b>a Custom Poker table valued at $600</b>!  Qualify <b>every Saturday through the end of May at 7:00 PM ET</b>.  <p>The winner of each qualifier also wins a <b>Clay Poker Chip Set</b>!!</p>";
messages[1]="<strong>New TURBO Tables</strong><p>Look for our new <b>TURBO</b> tables, which will give you only 8 seconds on the timer instead of 12.  This should help speed up play for those of you who like to play FAST!</p>";
messages[2]="<strong>Confused About How To Earn Tickets?</strong><p>In order to earn tickets, you must start with the Entry Level Sit & Go Tournaments. <a href=\"waystowin.aspx?display=3\">Click here</a> to learn about Tickets and <a href=\"tournaments.aspx?display=6\">click here</a> to learn about our Sit & Go Tournaments!</p>";
messages[3]="<strong>Is somebody bothering you?</strong><p>If you find that somebody on your table is especially annoying, block their chat using <a href=\"account.aspx?frame=chatManagement.aspx\">Chat Management</a> on your \"My Account\" page";
messages[4]="<strong>Earn Cash Tournament Entries by Referring Your Friends!!</strong><p>Earn "+lpLabelPlural+" for every player you refer.  Use the <a href=\"friend.aspx\">Referrals</a> page to invite all of your friends today!";
messages[5]="<strong>Post and Fold Limited</strong><p>In order to speed up tournament play, players are limited to 10 minutes in Post and Fold. <p> <b>Please Note:</b> If you are removed from a tournament for this reason, you will <u>not</u> receive a refund.";
messages[6]="<strong>The Daily Sweepstakes</strong><p>Enter the Daily Sweepstakes once a day every day for a chance to win 500 "+lpLabelPlural+"!!</p><a href=\"Sweepstakes.aspx\">Click here</a> for more details!!</p>";





///////Do not edit pass this line///////////////////////
var ie=document.all
var dom=document.getElementById

if (messages.length>2)
i=2
else
i=0

function move(whichdiv){
tdiv=eval(whichdiv)
if (parseInt(tdiv.style.top)>0&&parseInt(tdiv.style.top)<=5){
tdiv.style.top=0+"px"
setTimeout("move(tdiv)",scrollerdelay)
setTimeout("move2(second2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv.style.top)>=tdiv.offsetHeight*-1){
tdiv.style.top=parseInt(tdiv.style.top)-5+"px"
setTimeout("move(tdiv)",50)
}
else{
tdiv.style.top=parseInt(scrollerheight)+"px"
tdiv.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function move2(whichdiv){
tdiv2=eval(whichdiv)
if (parseInt(tdiv2.style.top)>0&&parseInt(tdiv2.style.top)<=5){
tdiv2.style.top=0+"px"
setTimeout("move2(tdiv2)",scrollerdelay)
setTimeout("move(first2_obj)",scrollerdelay)
return
}
if (parseInt(tdiv2.style.top)>=tdiv2.offsetHeight*-1){
tdiv2.style.top=parseInt(tdiv2.style.top)-5+"px"
setTimeout("move2(second2_obj)",50)
}
else{
tdiv2.style.top=parseInt(scrollerheight)+"px"
tdiv2.innerHTML=messages[i]
if (i==messages.length-1)
i=0
else
i++
}
}

function startscroll(){
first2_obj=ie? first2 : document.getElementById("first2")
second2_obj=ie? second2 : document.getElementById("second2")
move(first2_obj)
second2_obj.style.top=scrollerheight
second2_obj.style.visibility='visible'
}

if (ie||dom){
document.writeln('<div class="scroller">');
document.writeln('<div id="main2" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden;">')
document.writeln('<div style="position:absolute;width:'+scrollerwidth+';height:'+scrollerheight+';clip:rect(0 '+scrollerwidth+' '+scrollerheight+' 0);left:0px;top:0px">')
document.writeln('<div id="first2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:1px;">')
document.write(messages[0])
document.writeln('</div>')
document.writeln('<div id="second2" style="position:absolute;width:'+scrollerwidth+';left:0px;top:0px;visibility:hidden">')
document.write(messages[dyndetermine=(messages.length==1)? 0 : 1])
document.writeln('</div>')
document.writeln('</div>')
document.writeln('</div>')
}

if (window.addEventListener)
window.addEventListener("load", startscroll, false)
else if (window.attachEvent)
window.attachEvent("onload", startscroll)
else if (ie||dom)
window.onload=startscroll

