$(document).ready(initPage);

function initPage(){
    $("#leave_msg").click(showComments);
}

function showComments() {
  $("#comments_form").show();
  $("#comments").css("visibility", "visible");
}

