jQuery(document).ready(function() {


jQuery("a#comments").click(function() {
	jQuery("ol#commentlist").toggle();
});

jQuery("a#respond").click(function() {
	jQuery("#commentformdiv").toggle();
});

});


