/**
 * @author nexum AG
 */

 
function listOver(id){
	document.getElementById(id).style.backgroundColor = "#F1F1F1";
	document.getElementById(id).style.color = "#01295a";		
}

function listOut(id){
	document.getElementById(id).style.backgroundColor = "#FFFFFF";
	document.getElementById(id).style.color = "#7D7D7D";
}
