
// Ouverture des liens dans une nouvelle fenetre
function liensEnNouvelleFenetre(a) {
var b=a?"_blank":"_self";
var c=document.links;
for(var i=0;i<c.length;i++) {if(c[i].href.search("24h00.fr")==-1) c[i].target=b};
}

$(document).ready(function(){
		$("div[@class='libelle']").each(function() {
		  $(this).hover(
				function(){
				  $('#'+$(this).attr('id')+' .critere').show();
	     	},
	     	function(){
          $('#'+$(this).attr('id')+' .critere').hide();
				}
			);
		});
  });