$(document).ready(function() {
	$('.related, .related h2').hide();
	$('body.single .related, body.single .related h2').show();
	
	$('a.show-related').click(function() {
		$($(this).attr('href')).slideToggle();
		return false;
	});
});
