// JavaScript Document

// mine
function remoteRollover() {
	if (!document.getElementById) return true;
	
	
	// Crossroads
	var img_crossroads = document.getElementById("img_crossroads");
	var txt_crossroads = document.getElementById("txt_crossroads");
	txt_crossroads.className = "linkOut";
	txt_crossroads.onmouseover = function() {
		txt_crossroads.className = "linkOver";
		img_crossroads.className = "bgRoll_crossroads_switch";
	}
	txt_crossroads.onmouseout = function() {
		txt_crossroads.className = "linkOut";
		img_crossroads.className = "bgRoll_crossroads";
	}
	img_crossroads.onmouseover = function() {
		txt_crossroads.className = "linkOver";
	}	
	img_crossroads.onmouseout = function() {
		txt_crossroads.className = "linkOut";
	}
	
	
	
	// Glory Glory
	var img_glory = document.getElementById("img_glory");
	var txt_glory = document.getElementById("txt_glory");
	txt_glory.className = "linkOut";
	txt_glory.onmouseover = function() {
		txt_glory.className = "linkOver";
		img_glory.className = "bgRoll_glory_switch";
	}
	txt_glory.onmouseout = function() {
		txt_glory.className = "linkOut";
		img_glory.className = "bgRoll_glory";
	}
	img_glory.onmouseover = function() {
		txt_glory.className = "linkOver";
	}	
	img_glory.onmouseout = function() {
		txt_glory.className = "linkOut";
	}
	
	
	
	// Cerebral Palsy
	var img_cpc = document.getElementById("img_cpc");
	var txt_cpc = document.getElementById("txt_cpc");
	txt_cpc.className = "linkOut";
	txt_cpc.onmouseover = function() {
		txt_cpc.className = "linkOver";
		img_cpc.className = "bgRoll_cpc_switch";
	}
	txt_cpc.onmouseout = function() {
		txt_cpc.className = "linkOut";
		img_cpc.className = "bgRoll_cpc";
	}
	img_cpc.onmouseover = function() {
		txt_cpc.className = "linkOver";
	}	
	img_cpc.onmouseout = function() {
		txt_cpc.className = "linkOut";
	}
	
	
	// Asian American
	var img_asianAm = document.getElementById("img_asianAm");
	var txt_asianAm = document.getElementById("txt_asianAm");
	txt_asianAm.className = "linkOut";
	txt_asianAm.onmouseover = function() {
		txt_asianAm.className = "linkOver";
		img_asianAm.className = "bgRoll_asianAm_switch";
	}
	txt_asianAm.onmouseout = function() {
		txt_asianAm.className = "linkOut";
		img_asianAm.className = "bgRoll_asianAm";
	}
	img_asianAm.onmouseover = function() {
		txt_asianAm.className = "linkOver";
	}	
	img_asianAm.onmouseout = function() {
		txt_asianAm.className = "linkOut";
	}
	

	
}
// end mine

addLoadEvent(remoteRollover);
