jQuery(document).ready(function($) {
	$("textarea[name='comment']").parents()
		.map(function () {
			if (this.tagName == "FORM")
				$(this).before('<div id="pj-convo-comment-prompt">Would you wear this dress??</div>');
		})
});
