//<SCRIPT>
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		splash_main_btn_home_over = newImage('<%= strImagePath + "splash/splash_main_btn_home-over.gif" %>');
		splash_main_btn_join_over = newImage('<%= strImagePath + "splash/splash_main_btn_join-over.gif" %>');
		splash_main_btn_community_over = newImage('<%= strImagePath + "splash/splash_main_btn_community-o.gif" %>');
		splash_main_btn_LINKS_over = newImage('<%= strImagePath + "splash/splash_main_btn_LINKS-over.gif" %>');
		//splash_main_btn_help_over = newImage('<%= strImagePath + "splash/splash_main_btn_help-over.gif" %>');
		splash_testimonials_title_over = newImage('<%= strImagePath + "splash/splash_testimonials_title-o.gif" %>');
		splash_spotlite_title_over = newImage('<%= strImagePath + "splash/splash_spotlite_title-over.gif" %>');
		splash_events_title_over = newImage('<%= strImagePath + "splash/splash_events_title-over.gif" %>');
		splash_news_title_over = newImage('<%= strImagePath + "splash/splash_news_title-over.gif" %>');
		preloadFlag = true;
	}
}

