<!--
var BackgroundTimerID = null, FadeInTimerID = null, FadeOutTimerID = null, ScrollPosY = 0, FirstLoad = true, AlphaChannel = 1
function scroll_rosemont(){
 ScrollPosY > 798 ? ScrollPosY = 0 : ScrollPosY++
 document.getElementById("RoseScroll").style.backgroundPosition = "0px " + ScrollPosY + "px"
}

function fade_in(){
  AlphaChannel < 20 ? AlphaChannel++ : fade_out_wait()
  document.getElementById("RoseScroll").style.MozOpacity = AlphaChannel/100
  document.getElementById("RoseScroll").style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=" + AlphaChannel + ")"
}

function fade_out(){
  AlphaChannel > 0 ? AlphaChannel-- : fade_in_wait()
  document.getElementById("RoseScroll").style.MozOpacity = AlphaChannel/100
  document.getElementById("RoseScroll").style.filter = "progid:DXImageTransform.Microsoft.Alpha(opacity=" + AlphaChannel + ")"
}


function fade_in_start(){
  FadeInTimerID = setInterval("fade_in();", 75)
}

function fade_out_start(){
  FadeOutTimerID = setInterval("fade_out();", 75)
}

function fade_out_wait(){
  clearInterval(FadeInTimerID)
  setTimeout("fade_out_start();", 15000)
}

function fade_in_wait(){
  clearInterval(FadeOutTimerID)
  setTimeout("fade_in_start();", 5000)
}






function loaded(){
 clearInterval(BackgroundTimerID)

 if(FirstLoad){
   FirstLoad = false
   clearInterval(FadeOutTimerID)
   setTimeout("fade_in_start();", 2500)
 }

 var RS = document.getElementById("RoseScroll")
 var RI = document.getElementById("RoseInfo")
 var RI1 = document.getElementById("RoseInfo1")
 var RI2 = document.getElementById("RoseInfo2")
 var bodyWidth = document.getElementById("MainTable").offsetWidth
 var bodyHeight = document.getElementById("MainTable").offsetHeight

 RI.style.left = ((bodyWidth - RI.offsetWidth)/2) + "px"
 RI.style.top = (bodyHeight - RI.offsetHeight) + "px"

 RI1.style.left = (((bodyWidth/2 - RI.offsetWidth/2) - RI1.offsetWidth)/2) + "px"
 RI1.style.top = (bodyHeight - RI1.offsetHeight) + "px"

 RI2.style.left = (((bodyWidth*1.5 + RI.offsetWidth/2) - RI2.offsetWidth)/2) + "px"
 RI2.style.top = (bodyHeight - RI2.offsetHeight) + "px"


 RI.style.visibility = "visible"
 RI1.style.visibility = "visible"
 RI2.style.visibility = "visible"

 RS.style.height = bodyHeight + "px"
 RS.style.left = (RI2.offsetLeft + (RI2.offsetWidth/2) - (RS.offsetWidth/2)) + "px"
 BackgroundTimerID = setInterval("scroll_rosemont();", 50)
}

window.onload = loaded
window.onresize = loaded
//-->