$(document).ready(function() {

	$("#center a").hover(function(){
		$(this).find("span").fadeOut();
	},function(){
		$(this).find("span").fadeIn();
	});
});

