$(document).ready(function() {
	$("#loginForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'Login'
	});
	$("#newUserForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'New User'
	});
	$("#messageForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'Message...',
		buttons: {
			OK: function() {
					$(this).dialog('close');
				}
		}
	});
	$("#forgotPasswordForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'Forgot Password'
	});
	$("#forgotUsernameForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'Forgot Username'
	});
	$("#changePasswordForm").dialog({
		autoOpen: false,
		width: 450,
		modal: true,
		title: 'Change Password'
	});
});