$(document).ready(
	function() {
		$("#register_button").click(
			function() {
				window.location = "/authentication/register/";
			}
		);
	}
);