function overTR(tr,id){
	tr.style.cursor='hand';
	tr.bgColor='#ddddf6';
	document.getElementById("img" + id).src = "/_templates/2010/imagenes/ico-globalfinanz.gif";
	document.getElementById("txtN" + id).className = "txt-menu-on";
	document.getElementById("txtC1" + id).className = "txt-menu-on";
	document.getElementById("txtC2" + id).className = "txt-menu-on";
}
function outTR(tr,id){
	tr.style.cursor='default';
	tr.bgColor='#f0f0fb';
	document.getElementById("img" + id).src = "/_templates/2010/imagenes/spacer.gif";
	document.getElementById("txtN" + id).className = "txt-menu";
	document.getElementById("txtC1" + id).className = "txt-menu-claro";
	document.getElementById("txtC2" + id).className = "txt-menu-claro";
}

