
	function init(){
		$("#username").focus();
		$.ajax({
			url: '/login',
			success: function(data){
				$('#login').append(data);
			}
		});
	}

