// JavaScript Document
$(document).ready(function(){
	$('div#pastComments').after("<p style='clear: left;'><a id='frmToggle' href='/blog/'>+ Leave A Comment</a></p>");//clear: left on <p> to clear social bookmark ul
	$('div#commentForm').hide();
	$('a#frmToggle').click(function(){
		 $('div#commentForm').toggle();
		 ($('div#commentForm').is(':hidden')) ? $(this).html('+ Leave A Comment') : $(this).html('- Hide Comment Form');
		 return false;
	   });//end click handler
	});// end dom ready handler
