$(document).ready(function(){
	$('a[rel="external"]').each(function(){
		this.target = "_blank";
	});
	$("input#applicantForm_action").click(function(e){
		$(this).val("Please wait...");
		$(this).attr("disabled", "disabled");
		$("form#applicantForm").submit();
		return false;
	});
});
