function visibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
if (targetElement.style.display == "none")
{
targetElement.style.display = "" ;
} else {
targetElement.style.display = "none" ;
}
}

function invisibilite(thingId)
{
var targetElement;
targetElement = document.getElementById(thingId) ;
targetElement.style.display = "none" ;
}

$(document).ready(function(){
		$("#tbl1").colorize({bgColor:'#f3f3f3', altColor:'#e3e3e3', hoverColor:'#ff8400', hiliteColor:'none'});
		$("#unelignesurdeux1").colorize({bgColor:'#f3f3f3', altColor:'#e3e3e3', hoverColor:'none', hiliteColor:'none'});
		$("#unelignesurdeux2").colorize({bgColor:'#f3f3f3', altColor:'#e3e3e3', hoverColor:'none', hiliteColor:'none'});
		$("#unelignesurdeux3").colorize({bgColor:'#f3f3f3', altColor:'#e3e3e3', hoverColor:'none', hiliteColor:'none'});
		//alert("OK");
	
		
});

