var banner_array = ["Join us at the Obion County Fair in TN (Aug 11-13)!", "Join us at the Skowhegan County Fair in ME (Aug 18-19)", "Join us at the Nebraska State Fair (Aug 28-30)"];
var index = 0;
var banner_id=10;

function showBanner() {
	$('banner_text').innerHTML = banner_array[index];
	$('banner_text').blindDown();
	banner_id=setTimeout("scrollBanner()", 4000);
};

function scrollBanner() {
	$('banner_text').blindUp();
	index += 1;
	if (index > 2) {
		index=0;
	};
	setTimeout('showBanner()', 1500);
};

//banner_id=setTimeout("scrollBanner()", 1500);