$(document).ready(function(){

	$("form .button").click(function(){
	
		$("form").submit();
	
	});

});

