﻿$(document).ready(function() {

    $(".CollapseComments").click(function() {
        $(".CommentList").slideToggle("slow");
    });

    $(".DeleteButton").click(function() {
        return confirm("Are sure that you want to delete the " + $(this).attr("rel") + "?");
    });
});
