var tn_url = new Array()
var tn_headline = new Array()
var tn_dec = new Array()

tn_headline[0] = "Restricted entry<br /><img src='http://www.etownian.com/103/images/topnews/internet.court.gif' width='92' height='125' align='right' border=0>";

tn_headline[1] = "Class on Labor Day<br /><img src='http://www.etownian.com/103/images/topnews/internet.court.gif' width='92' height='125' align='right' border=0>";

tn_headline[2] = "Eller trial continues<br /><img src='http://www.etownian.com/103/images/topnews/eller.waives.court.gif' width='92' height='125' align='right' border=0>";

// -- //

tn_url[0] = "http://www.etownian.com/103/11.16/news/restricted.entry.asp";

tn_url[1] = "http://www.etownian.com/103/11.16/news/class.on.asp";

tn_url[2] = "http://www.etownian.com/103/11.16/news/eller.trial.asp";

// -- //

tn_dec[0] = "After much discussion, the Enroll­ment Committee has decided upon two numbers to guide future enrollment decisions: 1555 residential students, making up 80 percent or more of the total student population. In order to call Elizabethtown a residential college and not a commuter college, 80 percent or more of the stu­dents have to live on campus. This fall, the College holds 81.1 percent.";

tn_dec[1] = "Nov. 9, College President Theodore E. Long announced classes will be held Labor Day in order to suspend classes the Friday before Homecomingfor Founders Day. In doing so, Long has received sharp criticism and concerns from faculty members.";

tn_dec[2] = "David B. Eller, scheduled to appear in court Tuesday, Nov. 21, has been granted a con­tinuance for his trial. The new court date is Jan. 17, 2007 ... <i>more in Etownian.com's in-depth coverage of <a href=http://eller.etownian.com>David Eller</a></i>.";

// -- //

var currentStory = 0
var storyCount = 3
function cycleStories()
{
  if (currentStory == storyCount)
  {
    currentStory = 0
  }
  document.getElementById('tn_headline').innerHTML = tn_headline[currentStory]
  document.getElementById('tn_headline').href=tn_url[currentStory]
  document.getElementById('tn_desc').innerHTML = tn_dec[currentStory]
  currentStory++
}
window.setInterval("cycleStories()",10000)  // 10000 == 10 seconds
