if(window.attachEvent)
	window.attachEvent("onload", autofill_setListeners);

function autofill_setListeners() {
	var inputList = document.getElementsByTagName("INPUT");
	for(i = 0; i < inputList.length; i++) {
		inputList[i].attachEvent("onpropertychange", autofill_restoreStyles);
		//inputList[i].style.backgroundColor = "";
	}

	var selectList = document.getElementsByTagName("SELECT");
	for(i = 0; i < selectList.length; i++) {
		selectList[i].attachEvent("onpropertychange", autofill_restoreStyles);
		//selectList[i].style.backgroundColor = "";
	}
}

function autofill_restoreStyles() {
	if(event.srcElement.style.backgroundColor != "" && event.srcElement.style.backgroundColor != "#a0d0ff") {
		event.srcElement.style.backgroundColor = "#dfdf80";
		event.srcElement.style.color = "#000";
		
		//if(document.all['googleblurb'])
		//	document.all['googleblurb'].style.display = "block";
	}
}
