(function() {
	/* Auto-clear Search Field and NewsLetter field when focused */
	var j, fields = ["search_keyword","search_keyword2","subscriber_email","mini_locate_zip"];
	for (j = 0;j < fields.length;j+=1) {
		fields[j] = document.getElementById(fields[j]);
		if (fields[j] !== null) {
			(function() {
				fields[j].edited = false;
				fields[j].onfocus = function() {
					if (this.edited === false) {
						this.value = "";
						this.edited = true;
					}
				};
			}());
		}
	}
}());