$(document).ready(function () {
	$('#NavListe a').not('.my_active').css({
		backgroundColor: 'rgb(247,247,242)'
	}).hover(function () {
		$(this).addClass('anim')
		$(this).stop(true,true).css({
  		  backgroundColor: 'rgb(224,227,231)'
		}).animate({
			backgroundColor: 'rgb(146,152,158)'
		},
		500)
	},
	function () {
		$(this).animate({
			backgroundColor: 'rgb(247,247,242)'
		},
		{
			duration: 100,
			complete: function () {
			    $(this).removeClass('anim')
				$(this).css('backgroundColor', 'rgb(247,247,242)')
			}
		})
	})
	$('#NavListe_sub a').not('.my_active').css({
		backgroundColor: 'rgb(247,247,242)'
	}).hover(function () {
		$(this).addClass('anim')
		$(this).stop(true,true).css({
  		  backgroundColor: 'rgb(224,227,231)'
		}).animate({
			backgroundColor: 'rgb(146,152,158)'
		},
		500)
	},
	function () {
		$(this).animate({
			backgroundColor: 'rgb(247,247,242)'
		},
		{
			duration: 100,
			complete: function () {
			    $(this).removeClass('anim')
				$(this).css('backgroundColor', 'rgb(247,247,242)')
			}
		})
	})
});
