window.onload = function() {
	setTimeout("autoFillInputs('username')",800);
	setTimeout("autoFillInputs('password')",800);
}
function autoFillInputs(inputId) {
	if(document.getElementById(inputId) && document.getElementById(inputId).value == ''){
		document.getElementById(inputId).className = 'empty';
	}
}
/*document.getElementById('username').onfocus = function() {
	document.getElementById('username').className='';
}
document.getElementById('username').onblur = function() {
	if(document.getElementById('username').value==''){
		document.getElementById.className='empty';
	}
}*/