$(document).ready(function(){

	$("div.header ul li a").hover(function() {
	  $(this).children("span").css("color", "ffffff").animate({opacity: "show"}, "slow");
	}, function() {
	  $(this).children("span").css("color", "ffffff").animate({opacity: "hide"}, "slow");
	});

});