$(document).ready(function(){
	$('#nav li').each(function(){
		var child = $(this).find('span');
		$(this).hover(
			function(){
				child.fadeIn('slow');
			},
			function(){
				child.fadeOut('slow');
			}
		);
	});
});