// Makes sure the DOM is ready
$(document).ready(SC_init);

// Finds the link with the appropriate class. Springs into action when the link is clicked
function SC_init(){
	$("a.showComment").click(function(){
		SC_show();
		return false;
	});
}

function SC_show(){
	$("#comments div.show").slideToggle("slow");
}