/**
 * Automatically submit any form with the class "autosubmit" after a
 * ten-second delay
 */
$( function() {
	window.setTimeout(
		function() {
			$("form.autosubmit").submit();
		},
		10000
	);
} );

