$(document).ready(function() {
						   
var navAnchor = $("#navigation a");

$(navAnchor).each(function() {
	$(this).hover(
	  function () {$(this).stop(true, false).animate({borderBottomColor: "2px"}, 100 );},
	  function () {$(this).stop(true, false).animate({borderBottomColor: "0px"}, 100 );}
	);
});

});

