var headlines_delay = 10000;
var headlines = new Array();
var current_headline = 0;
headlines[0] = "Pre-Father's Day Breakfast sponsored by the Family Life Ministry...Saturday, June 14, 2008 at 9:00AM.  All fathers, grandfathers, great-grandfathers, godfathers, surrogate fathers, etc. are encouraged to attend.";
headlines[1] = "Annual Vacation Bible School held June 23-27...This year's theme is \"God's Backyard\"...6:00PM-8:30PM nightly. Classes are available for all ages.";
headlines[2] = "Bible Study Classes...Wednesdays at 12:00PM and 7:00PM...The Book of John, Chapter 1 taught by Pastor Maddox...Prayer and Praise Service...6:00PM";
headlines[3] = "Christ and Knowledge Camp (C&K)...July 7-25, 8:00AM-2:00PM...Ages 5-12.";

function headlines_next(){
	if (headlines.length==0)return;
	current_headline++;
	if (current_headline==headlines.length)current_headline = 0;
	
	var hl_text = "";
	var i = current_headline;
	do {
		hl_text = hl_text + headlines[i]+"<br>";
		i++;
		if (i==headlines.length)i=0;
	} while (i!=current_headline);
	
	var n = null;
	if (document.getElementById)
		n = document.getElementById("__headline");
	else if (document.all)
		n = document.all['__headline'];
	if (n)n.innerHTML = hl_text;
	window.setTimeout("headlines_next()",headlines_delay);
}

function headlines_init(){
	if (headlines.length==0)return;
	var hl_text = "";
	for (var i=0;i<headlines.length;i++){
		hl_text = hl_text + headlines[i] + "<br>";
	}

	document.write('<div style="height: 25px; overflow: hidden;" id="__headline">'+hl_text+'</div>');
	window.setTimeout("headlines_next()",headlines_delay);
}
headlines_init();