$(document).ready(function() {
	
	// show/hide comments
	$("#commentlist").hide();
	$("h3.comments").click(function(){
		$("#commentlist").toggle("slow");
		return false;
	});
	// show/hide latest comments - front page
	$("#recent ul").hide();
	$("#recent h3").click(function(){
		$("#recent ul").toggle("slow");
		return false;
	});
	
});
