
(function ($){	
	Drupal.behaviors.jenstechs = {
		attach: function(context, settings) {
			$("div#comments").hide();
			$("div#comments").before("<p id='toggle-comment-form'><a id='toggle-comment-link' href='#'>Add Comment</a></p>");
			$("#toggle-comment-link").click(function(e) {
					$("div#comments").toggle('fast');
					$(this).text(($('#toggle-comment-link').text() == 'Add Comment') ? 'Hide Comment Form' : 'Add Comment');
					e.preventDefault();
			});
		}
	}
})(jQuery);;

