$(document).ready(function() {
	$("#banner > ul > li > span").css({"opacity" : 0});

       $("#banner > ul > li").hover(function(){
               $(this).children("span").animate({"opacity" : 1}, 400);
       }, function(){
               $(this).children("span").animate({"opacity" : 0}, 400);
       });
});
