$(document).ready(function() {
	$('#navi li:not(.active) a').mouseover(function() {
		$(this).animate({ backgroundColor: "#d1d1d1" }, 350);
	});
	$('#navi li:not(.active) a').mouseout(function() {
		$(this).animate({ backgroundColor: "#e8e8e8", color: 'black' }, 350);
	});
	$('#navi li:not(.active) a').click(function() {
		$(this).animate({ backgroundColor: "#085982", color: 'white' }, 350);
		$('#navi li a').unbind('mouseout');
	});
});