function loadComments(n){$.ajax({type:"POST",url:"/Comments/GetComments",data:{id:contentID,type:contentType}}).done(function(t){t==""?$(n.html("No comments yet...")):$(n).html(t)})}function postComment(n,t){$.ajax({type:"POST",url:"/Comments/PostComment",data:{id:contentID,type:contentType,body:n}}).done(function(){loadComments(t);alert("Your comment has been submitted for moderation and should show up shortly")})}