function addComment()
{
	$("#add_comment").show("normal");
	$("#my_comment").focus();
}
function saveComment(name)
{
	var comment = $("#my_comment").val();
	var yourName = $("#add_comment #my_name").val();

	$.getJSON("http://www.birthvillage.com/json.addnamecomment.php?n=" + escape(name) + "&yn=" + escape(yourName) + "&c=" + escape(comment) + "&jsoncallback=?",
        function(data){
		
			// do error handling
			if (data.success == false)
			{
				alert(data.error);	
			}
			else
			{
				
				var newComment = $(document.createElement("div"));
				newComment.html('<div class="name_comment you">' + comment + '<br /><em class="smallPost">Posted by <b>You</b> today!</em></div><div class="quote_arrow"></div>');
				$("#add_comment").fadeOut("normal", function(){
					$("#comment-list").prepend(newComment).show("normal");
														 });
							
			}
			
        });
}