$(document).ready(function(){
	var resetPos = $('#nav .current_page_item, #nav .current_page_ancestor').position();
	resetPos = resetPos.left + (($('#nav .current_page_item, #nav .current_page_ancestor').width()/2)-32);
	var pos = 0;
	$('#highlight').css({left:resetPos});
	$('#nav li:not(.page-item-11)').hover(
		function(){
			pos = $(this).position();
			pos = pos.left + (($(this).width()/2)-32);
			$('#highlight').stop().animate({left:pos}, 80, "easeInOutQuad");
		},
		function(){
			$('#highlight').stop().animate({left:resetPos}, 250, "easeInOutQuad");
		}
	);
})
