function hideAndSeek(divid,flagit) {
	if (flagit=="show"){
		if (document.layers) document.layers[''+divid+''].display = "block"
		else if (document.all) document.all[''+divid+''].style.display = "block"
		else if (document.getElementById) document.getElementById(''+divid+'').style.display = "block"
	}
	else
	if (flagit=="hide"){
		if (document.layers) document.layers[''+divid+''].display = "none"
		else if (document.all) document.all[''+divid+''].style.display = "none"
		else if (document.getElementById) document.getElementById(''+divid+'').style.display = "none"
	}
}


function hideAll(){
	hideAndSeek('brazil','hide');
	hideAndSeek('elkhart','hide');
	hideAndSeek('indianapolisfc','hide');
	hideAndSeek('indianapolisrs','hide');
	hideAndSeek('jackson','hide');
	hideAndSeek('kalamazoo','hide');
	hideAndSeek('lafayette','hide');
	hideAndSeek('logansport','hide');
	hideAndSeek('plymouth','hide');
	hideAndSeek('southbend','hide');
}