$(function() {
	$('textarea').autoResize();
	$('#navi a').not('.sel a').mouseenter(function() {
		$(this).animate({backgroundColor: '#f0f0f0'}, 500);
	}).mouseleave(function() {
		$(this).animate({backgroundColor: 'white'}, 50);
	});
});