$(document).ready(function() {
	$('#sidebar_sub a.poem1').click(function() {
		$('#content_sub_body #poem1').show(500);
		$('#content_sub_body #poem2').hide(500);
		$('#content_sub_body #poem3').hide(500);
	});
	$('#sidebar_sub a.poem2').click(function() {
		$('#content_sub_body #poem1').hide(500);
		$('#content_sub_body #poem2').show(500);
		$('#content_sub_body #poem3').hide(500);
	});
	$('#sidebar_sub a.poem3').click(function() {
		$('#content_sub_body #poem1').hide(500);
		$('#content_sub_body #poem2').hide(500);
		$('#content_sub_body #poem3').show(500);
	});
});

