//Menu hover
		function FonctionsChargement() {
            oRollover._Init('menu');
        }
        oRollover._addEvent(window, 'load', FonctionsChargement, false);
		
		function sfOnBeforeShow(objets) {
			for(var indexObjet = 0; indexObjet < objets.length; ++indexObjet)
				{
				var cible = objets[indexObjet].parentNode.firstChild.firstChild;
				cible.src = cible.src.replace('_nm.','_hv.');
				}
		}
		
		function sfOnHide(objets) {
			for(var indexObjet = 0; indexObjet < objets.length; ++indexObjet)
				{
				var cible = objets[indexObjet].parentNode.firstChild.firstChild;
				cible.src = cible.src.replace('_hv.','_nm.');
				}
		}
		
		$(document).ready(function() {
			
			//sous menu 
			$("ul.sf-menu").supersubs({ 
            	minWidth:    12,   // minimum width of sub-menus in em units 
            	maxWidth:    50,   // maximum width of sub-menus in em units 
            	extraWidth:  3     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        	}).superfish({
				autoArrows:  false,
				delay:0,
				onBeforeShow:function(){sfOnBeforeShow(this)},
				onHide:function(){sfOnHide(this)} 
			});
			
			//Listes qui bougent
			$('ul.bouge li a').hover(function() {
				$(this).animate({ paddingLeft: '7px' }, 100).animate({ paddingLeft: '4px' }, 50 );
			}, function() {
				$(this).animate({ paddingLeft: '0px' }, 100);
			});

		}); 
