$(function() {
	
	$("a.comment_btn").click(function() {
		var itemId = $(this).attr("itemId");
		$("#comment_form").remove();
		//$(this).parent().hide();
		$("#hr").before('<form id="comment_form"> \
			<textarea name="comment" id="user_comment"></textarea> \
			<input value="Comment" id="btn-post" type="submit" class="black_button" /> \
			</form>');
		$("#user_comment").focus();
		$("#comment_form").submit(function() {
			//alert($("#user_comment").val());
			//alert("Status id: " + itemId);
			var comment = $("#user_comment").val();
			submit_comment(itemId, comment);
			return false;
		});
		$("#user_comment").blur(function() {
			if ($(this).val()==""){
				$("#comment_form").remove();
		 		//$("a.comment_btn[itemId='"+itemId+"']").parent().show();
			}
		});
		return false;
	})

	
	
});