diff --git a/library/ZendAfi/View/Helper/Notice/Entete.php b/library/ZendAfi/View/Helper/Notice/Entete.php
index f98d24e28db5a4fe5de0f1b82c1a69d37bad0497..04071022b6257066ac0686304098fde4825fe6b7 100644
--- a/library/ZendAfi/View/Helper/Notice/Entete.php
+++ b/library/ZendAfi/View/Helper/Notice/Entete.php
@@ -55,7 +55,7 @@ class ZendAfi_View_Helper_Notice_Entete extends Zend_View_Helper_HtmlElement {
 		$i=0;
 		foreach($libelles_valeurs as $libelle => $valeur){
 			$class = is_odd($i) ? 'second' : 'first' ;
-			$html.= '<dt class="'.$class.'">'.$libelle.'</dt>';
+			$html.= '<dt class="'.$class.' '.str_replace('ĂŠ','e',strtolower(str_replace(['(',')'], '',$libelle))).'">'.$libelle.'</dt>';
 			$html.= '<dd class="'.$class.'">';
 			$html.= $this->getValeurHtml($valeur);
 			$i++;
diff --git a/public/admin/js/global.js b/public/admin/js/global.js
index a90947a6e2d91147552826b5005cd9a3de1a61d9..f60c7e22cdfb5c42d0c2f2c174090a1401331189 100644
--- a/public/admin/js/global.js
+++ b/public/admin/js/global.js
@@ -307,6 +307,9 @@ function openIFrameDialog(url, title) {
 if (initializeNoticeMurAnimation == undefined) {
     
 	var initializeNoticeMurAnimation = function() {
+	    if ( typeof initializeVignetteSupportKiosque !== 'undefined'){
+		initializeVignetteSupportKiosque();
+	    }
 		$(".liste_mur .notice_wrapper").mouseenter(function(){
 			var wrapper = $(this);
 			var thumbnail = wrapper.find('a img').add($(this).find('.nothumbnail_wrapper'));