$(function(){
	$(document).ready(function(){
		$("nav ul li").animate({ 'top' : '-20px' }, 0);
		
		$("nav ul .current-menu-item").animate({ 'top' : '0' }, 0).css("background", '#000');
		$("nav ul .current-menu-ancestor").animate({ 'top' : '0' }, 0).css("background", '#000');
	});
});

$(function(){
	$(document).ready(function(){
		$(function(){
			$("nav ul li").hover(function(){
				$(this).stop().animate({ top: '0'}, 200);
				$(this).css("background", '#000');
			}, function (){
				$(this).stop().animate({ top: '-20px'}, 300);
				$(this).css("background", '#ff0000');
			});
			$("nav ul .current-menu-item").hover(function(){
				$(this).stop().animate({ top: '0'}, 0);
			}, function (){
				$(this).stop().animate({ top: '0'}, 0);
				$(this).css("background", '#000');
			});
			$("nav ul .current-menu-ancestor").hover(function(){
				$(this).stop().animate({ top: '0'}, 0);
			}, function (){
				$(this).stop().animate({ top: '0'}, 0);
				$(this).css("background", '#000');
			});
		});
	});
});
