$(function(){
	$("#menu > div").bind("mouseover",function(){
		$(this).find("a").animate({top:0,borderLeftWidth:20},250);
	}).bind("mouseleave",function(){
		$(this).find("a").animate({top:18,borderLeftWidth:3},250);
	});
});

