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'
}


//configure the below five variables to change the style of the scroller
var scrollerdelay='2500' //delay between msg scrolls. 3000=3 seconds.
var scrollerwidth='200px'
var scrollerheight='100px'
var scrollerbgcolor='#000;'
//set below to '' if you don't wish to use a background image
var scrollerbackground=''

//configure the below variable to change the contents of the scroller
var messages=new Array()
messages[0]="2008 Las Vegas Event Calendar"
messages[1]="Dec. 17-31 David Copperfield, Hollywood Theatre, MGM Grand"
messages[2]="Dec. 17-20, 29-30 Barry Manilow, Las Vegas Hilton Theater"
messages[3]="Dec. 17-20 Donnie &amp; Marie, The Flamingo Showroom"
messages[4]="Dec. 19 X-107.5 Presents Papa Roach, The Joint, Hard Rock Hotel &amp; Casino"
messages[5]="Dec. 21-22 Terry Fator, Las Vegas Hilton Theater"
messages[6]="Dec. 26-28, 30 Anthony Cools, Anthony Cools Experience, Paris Las Vegas"
messages[7]="Dec. 27 Ultimate Fighting Championship UFC 92: The Ultimate 2008, MGM Grand Garden Arena"
messages[8]="Dec. 30-31 Bette Midler, The Colosseum, Caesar's Palace"
messages[9]="Jan. 1-12 David Copperfield, Hollywood Theatre, MGM Grand"
messages[10]="Jan. 1-2 Gabriel Iglesias, Lance Burton Theater, Monte Carlo"
messages[11]="Jan. 2 Neil Diamond, MGM Grand Garden Arena"
messages[12]="Jan. 2-3, 5-7, 9-11, 13-14, 16 Bette Midler, The Colosseum, Caesar's Palace"
messages[13]="Jan. 15-30 Tom Jones, Hollywood Theatre, MGM Grand"
messages[14]="Jan. 16-18 Barry Manilow, Las Vegas Hilton Theater"
messages[15]="Jan. 20-24 Donnie &amp; Marie, The Flamingo Showroom"
messages[16]="Jan. 23-24 Jay Leno, Terry Fator Theater, The Mirage"
messages[17]="Jan. 29 Drew Carey and the Improv All-Stars, Hollywood Theatre, MGM Grand"
messages[18]="Jan. 30 NOFX, The Joint, Hard Rock Hotel &amp; Casino"
messages[19]="Jan. 31 Ultimate Fighting Championship UFC: 94: St. Pierre vs. Penn 2, MGM Grand Garden Arena"





