// JavaScript Document
var timerID = 0;
var which = 0;
var rotate_time = 3250;
function write_buttons()
{
document.getElementById('buttons').innerHTML = '';
}
function start(type) {
if(type == 'click' && timerID < 1)
{
which += 1;
rotate_story();
timerID = setTimeout('start("continue")', rotate_time);
//write the stop button
document.getElementById('stop_play').innerHTML = '
';
}
else if(type == 'start' || type == 'continue' )
{
if(type == 'continue')
{
which += 1;
}
rotate_story();
timerID = setTimeout('start("continue")', rotate_time);
//write the play button
//document.getElementById('stop_play').innerHTML = '
';
}
}
function stop() {
if(timerID) {
clearTimeout(timerID);
timerID = 0;
}
//write the play button
document.getElementById('stop_play').innerHTML = '
';
}
function next(){
stop();
which += 1;
rotate_story();
}
function previous(){
stop();
//which = which - 1;
which -= 1;
rotate_story();
}
function rotate_story()
{
var story = new Array()
// the stories
story[0] = '
The largest pinning celebration in the history of Bethel College was held May 3, 2008, with 110 nursing graduates...
'; story[1] = 'Bethel graduate, Tania L. Harman(Collins), a bilingual teacher at Warren Primary Center was named South BendCommunity...
'; story[2] = 'This summer Bethel College willoffer academic camps in a variety of subjects. The day camps are available forcampers...
'; story[3] = 'Bethel College students will hostDodgeball for the Homeless Wednesday, April 23 at 10 p.m. in the campus'Goodman...
'; story[4] = 'More than 500 students will graduateat Bethel's two commencement ceremonies which will take place Saturday, May...
'; story[5] = 'The Bethel Collegecommunity has partnered with Habitat for Humanity of St. Joseph County to builda home for a local...
'; story[6] = 'Bethel Collegewill host one of eight "Discover Nursing Summer Camps" for high school students,June 23-26....
'; story[7] = 'The School of Education at BethelCollege is scheduled for a fall 2008 accreditation review by the NationalCouncil...
'; story[8] = 'Bethel College was recently listed second in a top ten list of Christian colleges. In an article written by Kelli...
'; if(which > (story.length - 1) ) { which = 0; } else if(which < 0) { which = (story.length - 1); } document.getElementById('NewsScroll').innerHTML = story[which]; }