$( function() {
	$('span.book-legend').hide().parent().hover(
		function() { $('span.book-legend', this).slideDown('normal'); },
		function() { $('span.book-legend', this).slideUp('normal'); }
	);
} );