﻿var i = 0;
$(document).ready(function(){
	$(".sendCo").click(function(){
		if(i==0){
			$(this).hide();
			$(".postCommentForm").slideDown('slow');
			i=1;
		}
	});

});