// 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] = '

Bethel Goes Green Promoting Health and Wellness on Campus

Students, faculty and staff will host a health and wellness fair for the Bethel Community Nov. 11 from 11 a.m. until...

'; story[1] = '

Bethel Provides a Global Perspective in This Year's Christmas Concert

The Bethel College Music Department will present this year’s Christmas concert “The Whole World Rejoices”...

'; story[2] = '

Jazz and Percussion Ensembles to Perform in Concert

 The Bethel College Jazz & Percussion Ensembles will perform a free concert Friday, Nov. 20 at 7:30 p.m....

'; story[3] = '

Men's Basketball Inks Cody Cochran

  Bluffton High School’s Cody Cochran signed a National Letter of Intent today to continue his academic and athletic careers at Bethel College in Mishawaka,...

'; story[4] = '

Southwood's Spencer Krhin Signs with Men's Basketball

  Southwood High School’s Spencer Krhin has signed a National Letter of Intent today to continue...

'; story[5] = '

Sign Up Now for Blaise Pascal High School Math Competition

High school math groups can now sign up for the annual Blaise Pascal High School Math Competition to take place at...

'; story[6] = '

Softball to Offer Winter Clinics, Free Coaches Clinic

The Bethel College Softball players and coaches will be hosting a hitting, slapper, pitching, all-skills, and a FREE...

'; story[7] = '

Bethel to Host Colloquia Lecture Series

Bethel will host the first lecture in the Colloquia Lecture Series on November 13 at 3 p.m. in the Academic Center at Bethel College, room 342.Adjunct Professor of...

'; story[8] = '

Bethel Welcomes New Chief Fiscal Officer

Clair Knapp will join Bethel College’s staff as chief fiscal officer. Knapp will replace current CFO, John Myers, who is retiring after 18 years of service to...

'; if(which > (story.length - 1) ) { which = 0; } else if(which < 0) { which = (story.length - 1); } document.getElementById('NewsScroll').innerHTML = story[which]; }