/**
 * This method is executed right after page load. JQuery enqueues functions
 * declared this way.
 */
$(function() {

	// Bind special behavior for password's textboxes.   
	bindPasswordTextbox($("#passprompt"), $("#passwd"));

	// Copies values during form submission.
	$("#registerForm").bind("submit", function() {
		
		$("#email").val($("#username").val());
		$("#repasswd").val($("#passwd").val());
		
		return true;
	});

});

