$(document).ready(function(){
	if($("input[@type='submit']") != null){
		$("input[@type='submit']").click(
			function(){
				$(this).attr("value","Opdracht wordt verwerkt...");
			}
		);
	}
});