function titleOver(e) {
	e.style.opacity = "0.5";
	e.style.filter = "alpha(opacity=50)";
}

function titleOut(e) {
	e.style.opacity = "1";
	e.style.filter = "alpha(opacity=100)";
}