$(function() {
	$('.menu a').mouseenter(function() {
		$(this).find('span').show();
	}).mouseleave(function() {
		$(this).find('span').hide();
	});

});
function show($element) {
	$('.contentbox').fadeOut("slow");
	$element.fadeIn("slow");
}

function hide($element) {
	$element.fadeOut("slow");
}