$(document).ready(function () {

/*Menu B*/
$(".menu1 .menu1_liste li a").mouseover(function () {
$(this).css("color","#e39f0d");
$(this).stop().animate({ paddingLeft: "24px" }, 300 );
});

$(".menu1 .menu1_liste li a").mouseout(function () {
$(this).css("color","#d3d4d4");
$(this).stop().animate({ paddingLeft: "8px" }, 300 );
});

});