$(document).ready(function()
{
	$("#menu a").mouseover(function()
	{
		$("#arrow").stop();
		$("#arrow").animate(
		{
			top: ($(this).position().top - 3) + "px"
		}, "normal");
	});
});
