$(document).ready(function(){

	$("#footer a span:eq(1)").hide();

	$("#footer a").hover(
		function(){
			$(this).find("span:eq(1)").show("fast");
		},function(){
			$(this).find("span:eq(1)").hide("fast");
		});
});
