function splashText(strLabel){
	
	if(strLabel == "preschool") strSplashBox = strPreschool;
	else if(strLabel == "children") strSplashBox = strChildren;
	else if(strLabel == "youth") strSplashBox = strYouth;
	else if(strLabel == "adults") strSplashBox = strAdults;
	else if(strLabel == "worship_music") strSplashBox = strWorshipMusic;
	else if(strLabel == "outreach") strSplashBox = strOutreach;
	else if(strLabel == "membership") strSplashBox = strMembership;
	else if(strLabel == "sharedministries") strSplashBox = strSharedMinistries;
	else if(strLabel == "events_retreats") strSplashBox = strEventsRetreats;
	else strSplashBox = strHome;
	
	/*
	isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
	NS4 = (document.layers) ? true : false;
	IEmac = ((document.all)&&(isMac)) ? true : false;
	IE4plus = (document.all) ? true : false;
	IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
	IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	ver4 = (NS4 || IE4plus) ? true : false;
	NS6 = (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;
	*/

	if(document.all){
		splashBox.innerHTML = strSplashBox; //IE
	}
	else if(document.getElementById){
		document.getElementById('splashBox').innerHTML = strSplashBox; //NS6
	}
	else{
		//alert(strLabel);
		//alert(navigator.appVersion.indexOf("MSIE 4."));
	}

}

//preload images
var splash_0_main = new Image()
splash_0_main.src = "images/splash/splash_0_main.jpg";
var splash_1_main = new Image()
splash_1_main.src = "images/splash/splash_1_main.jpg";
var splash_2_main = new Image()
splash_2_main.src = "images/splash/splash_2_main.jpg";
var splash_3_main = new Image()
splash_3_main.src = "images/splash/splash_3_main.jpg";
var splash_4_main = new Image()
splash_4_main.src = "images/splash/splash_4_main.jpg";
var splash_5_main = new Image()
splash_5_main.src = "images/splash/splash_5_main.jpg";
var splash_6_main = new Image()
splash_6_main.src = "images/splash/splash_6_main.jpg";
var splash_7_main = new Image()
splash_7_main.src = "images/splash/splash_7_main.jpg";
var splash_8_main = new Image()
splash_8_main.src = "images/splash/splash_8_main.jpg";

var splash_1_off = new Image()
splash_1_off.src = "images/splash/splash_1_off.gif";
//var splash_1_on = new Image()
//splash_1_on.src = "images/splash/splash_1_on.gif";
var splash_2_off = new Image()
splash_2_off.src = "images/splash/splash_2_off.gif";
//var splash_2_on = new Image()
//splash_2_on.src = "images/splash/splash_2_on.gif";
var splash_3_off = new Image()
splash_3_off.src = "images/splash/splash_3_off.gif";
//var splash_3_on = new Image()
//splash_3_on.src = "images/splash/splash_3_on.gif";
var splash_4_off = new Image()
splash_4_off.src = "images/splash/splash_4_off.gif";
//var splash_4_on = new Image()
//splash_4_on.src = "images/splash/splash_4_on.gif";
var splash_5_off = new Image()
splash_5_off.src = "images/splash/splash_5_off.gif";
//var splash_5_on = new Image()
//splash_5_on.src = "images/splash/splash_5_on.gif";
var splash_6_off = new Image()
splash_6_off.src = "images/splash/splash_6_off.gif";
//var splash_6_on = new Image()
//splash_6_on.src = "images/splash/splash_6_on.gif";
var splash_7_off = new Image()
splash_7_off.src = "images/splash/splash_7_off.gif";
//var splash_7_on = new Image()
//splash_7_on.src = "images/splash/splash_7_on.gif";
var splash_8_off = new Image()
splash_8_off.src = "images/splash/splash_8_off.gif";
//var splash_8_on = new Image()
//splash_8_on.src = "images/splash/splash_8_on.gif";

