$(document).ready(function(){
	$("#menuPrincipal ul li a:not(.ativo)").hover(
	  function () {
		$(this).animate({"background-color": "#333"}, 400);
	  }, 
	  function () {
		$(this).animate({"background-color": "#1269ae"}, 400);
	  }
	);
});
