$(function() {
	$('#comment_form').submit(function() {
		if ($('#author').val() == '') {
			$.jGrowl('You must provide your name!');
			return false;
		}
		if ($('#author_email').val() == '') {
			$.jGrowl('You must provide your email address!');
			return false;
		}
		if ($('#comment').val() == '') {
			$.jGrowl('You must provide a comment to post!');
		}
		$('#comment_form').ajaxSubmit({
			success: function(d, s) {
				$.jGrowl('You comment has been submitted for approval!');
				$('#author').val('');
				$('#author_email').val('');
				$('#comment').val('');
			}
		});
		return false;
	});
});