jQuery(function( $ ){
	$('#menu ul li a').hover(function(){
		$(this).animate({'backgroundColor':'#b4deec', scrollTop : '50px'}, {duration: 300, queue: false},  'easeOutQuart');
	}, function(){
		$(this).animate({'backgroundColor':'#fff', scrollTop : '0'}, {duration: 300, queue: false},  'easeOutQuart');
	});
});
