$(document).ready(function() {
	//move the submit button under the CAPTCHA if exists
	//console.log($(".captcha").length);
	
	//only do this if the $(".captcha") exists
	if ($(".captcha").length>0){
		var submitButton  = $("#feedbackFormSubmitContainer");
		$("#feedbackFormSubmitContainer").remove();
		$("#contentWrap .captcha").append("<br/>");
		$("#contentWrap .captcha").append(submitButton);
	}
	
	//we hide the button show user will not see it jumping
	$("#feedbackFormSubmitContainer").show();
});