/******************************************************************************
* www.carpestudentem.org, comments script
*
* @author Simon Busard
* @date   12/03/2010
*
******************************************************************************/

$(function() {

	$("div#comments form").hide();
	$("div#comments > h3.add").last().wrapInner("<a href='' />");
	$("div#comments > h3.add > a").css("text-decoration","none");
	$("div#comments > h3.add > a").hover(
		function() {
			$(this).css("text-decoration","underline");
		},
		function() {
			$(this).css("text-decoration","none");
		});
	$("div#comments > h3.add > a").click(
		function(event) {
			event.preventDefault();
			$("div#comments form").slideToggle();
		});	
});

