
$(document).ready(function () {

/*MENU A*/
$(".MENU .MENU_liste li a").mouseover(function () {
$(this).stop().animate({ fontSize: "18px", paddingLeft: "15px" }, 100 );
});

$(".MENU .MENU_liste li a").mouseout(function () {
$(this).stop().animate({ fontSize: "12px", paddingLeft: "4px" }, 100 );
});

/*MENU B*/
$(".MENU1 .MENU1_liste li a").mouseover(function () {
$(this).css("background-color","#FFFFFF");
$(this).stop().animate({ paddingLeft: "20px" }, 500 );
});

$(".MENU1 .MENU1_liste li a").mouseout(function () {
$(this).css("background-color","#FFFFFF");
$(this).stop().animate({ paddingLeft: "10px" }, 500 );
});

/*MENU C*/
$(".sliding-element a").mouseover(function () {
$(this).stop().animate({ marginLeft: "20px" }, 500 );
});

$(".sliding-element a").mouseout(function () {
$(this).stop().animate({ marginLeft: "0px" }, 500 );
});

/*MENU D*/
$(".MENU2 .MENU2_liste li a").mouseover(function () {
$(this).css("background-color","#FFFFFF");
$(this).stop().animate({ paddingLeft: "50px" }, 50 );
});

$(".MENU2 .MENU2_liste li a").mouseout(function () {
$(this).css("background-color","#ECEFF5");
$(this).stop().animate({ paddingLeft: "4px" }, 50 );
});


/*MENU E*/
$(".sliding-element1 a").mouseover(function(){
	$(this).stop().animate({width:'250px'},{queue:false, duration:600, easing: 'easeOutBounce'});
});

$(".sliding-element1 a").mouseout(function(){
	$(this).stop().animate({width:'148px'},{queue:false, duration:600, easing: 'easeOutBounce'});
});


/*MENU F*/
$(".sliding-element2 a").mouseover(function(){
	$(this).stop().animate({height:'60px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	$("div",this).css("display", "block");
});

$(".sliding-element2 a").mouseout(function(){
	$(this).stop().animate({height:'15px'},{queue:false, duration:600, easing: 'easeOutBounce'});
});

/*MENU G*/
$("#sliding-navigation3 ul li a").mouseover(function(){
		$(this).stop().animate({paddingLeft: '20px'},50);
		$(this).css({'background-color' : '#D96528'});
});

$("#sliding-navigation3 ul li a").mouseout(function(){
	$(this).stop().animate({paddingLeft: '40px'},50);
	$(this).css({'background-color' : '#45B4E0'});
});

});