function over(id) {
	document.getElementById(id).firstChild.style.color = "#333333";
}

function out(id) {
	document.getElementById(id).firstChild.style.color = "#666666";
}
