// JavaScript Document
function ListOver(num){
	for (i=2; i<=14; i++){
//		try{
			if (i==num){
				document.getElementById("record"+ i).style.color="#6F9B14";
			}else{
				document.getElementById("record"+ i).style.color="#585858";
			}
//		}
//		catch (e){}
	}
}
