$(document).ready(function() {
	$('h3').hover(
	function() {
		$(this).next().show('fast');
	});
});