$(function(){
	$(".menu li a").mouseover(function(){
		
		$(this).animate( { borderLeftWidth:"5px" }, 300 )
		
		$(this).mouseleave(function(){
			$(this).animate( { borderLeftWidth:"0px" }, 300 )
		})
	});
});