// JavaScript Document

// mine
function remoteRollover() {
	if (!document.getElementById) return true;
	
	
	// Kyung Lee
	var img_leeK = document.getElementById("img_leeK");
	var txt_leeK = document.getElementById("txt_leeK");
	txt_leeK.className = "linkOut";
	txt_leeK.onmouseover = function() {
		txt_leeK.className = "linkOver";
		img_leeK.className = "bgRoll_leeK_switch";
	}
	txt_leeK.onmouseout = function() {
		txt_leeK.className = "linkOut";
		img_leeK.className = "bgRoll_leeK";
	}
	img_leeK.onmouseover = function() {
		txt_leeK.className = "linkOver";
	}	
	img_leeK.onmouseout = function() {
		txt_leeK.className = "linkOut";
	}
	
	
	
	// 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";
	}
	
	
	
	// Sanje Woodsorrel
	var img_woodsoS = document.getElementById("img_woodsoS");
	var txt_woodsoS = document.getElementById("txt_woodsoS");
	txt_woodsoS.className = "linkOut";
	txt_woodsoS.onmouseover = function() {
		txt_woodsoS.className = "linkOver";
		img_woodsoS.className = "bgRoll_woodsoS_switch";
	}
	txt_woodsoS.onmouseout = function() {
		txt_woodsoS.className = "linkOut";
		img_woodsoS.className = "bgRoll_woodsoS";
	}
	img_woodsoS.onmouseover = function() {
		txt_woodsoS.className = "linkOver";
	}	
	img_woodsoS.onmouseout = function() {
		txt_woodsoS.className = "linkOut";
	}
	
	
	// Logan Baird
	var img_bairdL = document.getElementById("img_bairdL");
	var txt_bairdL = document.getElementById("txt_bairdL");
	txt_bairdL.className = "linkOut";
	txt_bairdL.onmouseover = function() {
		txt_bairdL.className = "linkOver";
		img_bairdL.className = "bgRoll_bairdL_switch";
	}
	txt_bairdL.onmouseout = function() {
		txt_bairdL.className = "linkOut";
		img_bairdL.className = "bgRoll_bairdL";
	}
	img_bairdL.onmouseover = function() {
		txt_bairdL.className = "linkOver";
	}	
	img_bairdL.onmouseout = function() {
		txt_bairdL.className = "linkOut";
	}
	

	// Tony Sondag
	var img_sondagT = document.getElementById("img_sondagT");
	var txt_sondagT = document.getElementById("txt_sondagT");
	txt_sondagT.className = "linkOut";
	txt_sondagT.onmouseover = function() {
		txt_sondagT.className = "linkOver";
		img_sondagT.className = "bgRoll_sondagT_switch";
	}
	txt_sondagT.onmouseout = function() {
		txt_sondagT.className = "linkOut";
		img_sondagT.className = "bgRoll_sondagT";
	}
	img_sondagT.onmouseover = function() {
		txt_sondagT.className = "linkOver";
	}	
	img_sondagT.onmouseout = function() {
		txt_sondagT.className = "linkOut";
	}	
	
	
	// Kedar Lawrence
	var img_lawrenK = document.getElementById("img_lawrenK");
	var txt_lawrenK = document.getElementById("txt_lawrenK");
	txt_lawrenK.className = "linkOut";
	txt_lawrenK.onmouseover = function() {
		txt_lawrenK.className = "linkOver";
		img_lawrenK.className = "bgRoll_lawrenK_switch";
	}
	txt_lawrenK.onmouseout = function() {
		txt_lawrenK.className = "linkOut";
		img_lawrenK.className = "bgRoll_lawrenK";
	}
	img_lawrenK.onmouseover = function() {
		txt_lawrenK.className = "linkOver";
	}	
	img_lawrenK.onmouseout = function() {
		txt_lawrenK.className = "linkOut";
	}	
	

	
}
// end mine

addLoadEvent(remoteRollover);
