$(function(){
	$("#menu a").mouseenter(function(){
		$("#"+$(this).attr("id")+" .bgButton").animate({ top: '0px' }, 200);
	});
	$("#menu a").mouseleave(function(){
		$("#"+$(this).attr("id")+" .bgButton").animate({ top: '36px' }, 200);
	});
});
