$(document).ready(function(){
$("a.hover span").css("opacity","0");
$("a.hover span").hover(function () {
 $(this).stop().animate({
  opacity: 1
 }, 'slow');
},
function () {
 $(this).stop().animate({
  opacity: 0
 }, 'slow');
});
});
