/**
 * @author efernandez
 */
function tempo(){
	$$('#tiempos th').each(
	function (th, j){
		//colores para la cabecera
		if(j>0 && th.parentNode.id=='cab'){ 
			th.style.background="#7f8085";
			th.style.color="white";
		}
		//colores para el titular lateral
		if(j % 2 == 0 || th.parentNode.id=='cab'){ 
		}else{		
			th.style.background="#7f8085";
			th.style.color="white";
		}
	}
)
	$$('#tiempos tbody tr').each(
		function (tr, j){	
			if(j % 2 == 0){ 
				tr.style.background="#white";
			}else{		
				tr.style.background="#cfcfcf";
			}
		}
	)
}
window.addEvent('load', tempo);