$(document).ready(function() {
	$("#comments .box div.content").hide();
	$("#comments h2.title").addClass("link").toggle(function(){
		$("#comments .box div.content").slideDown('slow');
	},
	function(){
		$("#comments .box div.content").slideUp('slow');
	}
	).mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	});
});
