function profile_show() {
	var $this = $(this),
		$attr = $this.attr("class");
	$('.prof .item').slideUp('fast');
	$('.prof .item.'+$attr).delay(300).slideDown('fast');
}

$(document).ready(function() {
	$('.prof .item:not(:first-child)').hide();
	$('.prof_menu a').bind('click',profile_show);
	$('.menu a span').hide();
	$('.menu a').hover(
		function() { $(this).children('span').fadeIn('fast'); },
		function() { $(this).children('span').fadeOut(200); }
	);
});
