$(document).ready(function() {

// COMMENT EFFECTS
var form = $(".form")
var toggle = $(".toggle")

// Set the initial states for the comment fields.
toggle.show();
form.hide();

// When clicking on the toggle, show the add form.
toggle.click(function() {
	form.show();
	$(this).hide();
});


});