	/*
	 * Login
	 */

	$().ready(function () {
		loginObj = new Login();
	});
	
	var Login		= {};
	var loginObj = null;
	Login = PTM.extend({
	    init: function(){
			this._super();
			
			this.ui = {};
			
			this.resetUi();
		},
		resetUi: function(){
			$("#username").focus();
		}
	});