$(function() {
	$('div.item').hover(function() {
		$('p', $(this)).fadeIn('slow');
	},
	function() {
		$('p', $(this)).fadeOut('slow');
	});
});
