// ==/UserScript==
// @name		AUTO LOGIN iGoogle (Remember the Milk)
// @author		POWER.LA  - ISSO SIM E PODER ! - http://www.orkut.com/Profile.aspx?uid=14757431368851775288
// @community		http://www.orkut.com/Community.aspx?cmm=25443115
// @description		Auto Login on iGoogle (Faz o Login Automaticamente no iGoogle)
// @include         		http://www.rememberthemilk.com/services/modules/googleig/*
// @include		http://www.rememberthemilk.com/login/*
// @LAST UPDATE	  	15/05/2007
// ==/UserScript==

var pwFocus = false;

function autoLogin() {
	if(pwFocus==false) {
		if(document.forms[0].elements.namedItem("username").value.length>1 & document.forms[0].elements.namedItem("password").value.length>1) { document.forms[0].submit(); }
		else { setTimeout(autoLogin,25); }
	}
}

function focusEvent() {
	pwFocus = true;
}

if(document.forms[0] && document.forms[0].elements.namedItem("username") && document.forms[0].elements.namedItem("password")) {
	document.forms[0].elements.namedItem("username").addEventListener("keypress", focusEvent, false);
	document.forms[0].elements.namedItem("password").addEventListener("keypress", focusEvent, false);
	window.addEventListener("load", autoLogin, false);
}

