$(function() {
  $("li > a > span").css("opacity", "0");

	$("li > a").hover(
    function () {
         $("span", this).stop().animate({opacity: 0.8}, "normal");
    },
    function () {
         $("span", this).stop().animate({opacity: 0}, "normal");
    }
  );
});
