(function() {
	function autoCompleteOff(){
		var el, list;
		// this adds a non-standard attribute to prevent browser auto completion
		list = Sizzle_i2rd('input.autocomplete_off');
		while (el = list.pop()) {el.setAttribute("autocomplete", "off");}
		list = Sizzle_i2rd('.autocomplete_off input');
		while (el = list.pop()) {el.setAttribute("autocomplete", "off");}
		i2rd.removeEvent(window, 'load', autoCompleteOff);
	}
	i2rd.addEvent(window, 'load', autoCompleteOff);
})();


