jQuery(function(){
	jQuery(".crusty_form").show();
	jQuery(".crusty_form input[type=submit]").each(function() {
		jQuery(this).replaceWith("<button class='crusty' style='cursor:pointer;'>Klik s.v.p. hier om te tonen dat u een echt persoon bent</button>");
	});
	
	jQuery(".crusty").click(function() {
		var cf = jQuery(".cf:first").text();
		jQuery(this).parents("form.crusty_form").attr("action", cf);
		jQuery(this).replaceWith("<input type='submit' value='Verzenden' />");
		return false;
	});
	
	
});
