jQuery(function($) {
	
	// Tumblr li's
	$('ul.tumblr').find('li').find('p').hide().end().hover(function() {
		$(this).find('p').show();
	}, function() {
		$(this).find('p').hide();
	});
	
});
