// JavaScript Document

function colorizeTable(){
	var tables = $$('.tableauAlterne');

	for(var t=0; t<tables.length; t++) { 
		var lignes=tables[t].rows;
		for(var d=0; d<lignes.length; d++) { 
			var cellules=lignes[d].cells;
			for(var i=0; i<cellules.length; i++) { 
				if (d%2==0){
						cellules[i].style.backgroundColor="#E2E2E2";
				}else{
					cellules[i].style.backgroundColor="#F8F8F8";
				}
			}
		}
	}
}