curIndex = 0;
entryTxt = new Array();
  
  
  
  
  
  
  
      entryTxt[curIndex++] = "Thanks to all for making CUTC 2005 a success! See you at CUTC 2006!";
      entryTxt[curIndex++] = "Looking to share hotel room or carpool to CUTC? Then check out the CUTC Forum!";
      entryTxt[curIndex++] = "Business Objects confirmed for Bronze Sponsorship!";
      entryTxt[curIndex++] = "MacDonald, Dettwiler and Associates confirmed for Bronze Sponsorship!";
      entryTxt[curIndex++] = "TD Bank Financial Group confirmed for Bronze Sponsorship!";
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  

numEntries = curIndex;
curIndex = Math.round(Math.random() * (numEntries - 1));

function blankdyntxt()
{
        document.getElementById("newsTicker").innerHTML = "";
        setTimeout("changedyntxt();", 750);
}

function changedyntxt()
{
	curIndex = (curIndex+1) % numEntries;
	document.getElementById("newsTicker").innerHTML=entryTxt[curIndex];
	setTimeout("blankdyntxt();",6000);
}
setTimeout("blankdyntxt()", 3000);