// JavaScript Document

// mine
function remoteRollover() {
	if (!document.getElementById) return true;
	
	
	// Brian Crotty
	var img_crottyB = document.getElementById("img_crottyB");
	var txt_crottyB = document.getElementById("txt_crottyB");
	txt_crottyB.className = "linkOut";
	txt_crottyB.onmouseover = function() {
		txt_crottyB.className = "linkOver";
		img_crottyB.className = "bgRoll_crottyB_switch";
	}
	txt_crottyB.onmouseout = function() {
		txt_crottyB.className = "linkOut";
		img_crottyB.className = "bgRoll_crottyB";
	}
	img_crottyB.onmouseover = function() {
		txt_crottyB.className = "linkOver";
	}	
	img_crottyB.onmouseout = function() {
		txt_crottyB.className = "linkOut";
	}
	
	
	

	

	
}
// end mine

addLoadEvent(remoteRollover);

