$(document).ready(function(){

		// Adds/Removes Highlight and More Info to form fields
		(function activeField() {
				$("input, select, textarea").focus(function() {
					$(this).parents(".field").addClass("active");
					$(this).nextAll(".note").css("display", "block");
				});
				$("input, select, textarea").blur(function() {
					$(this).parents(".field").removeClass("active");
					$(this).nextAll(".note").css("display", "none");
				});
		})();

		// Shows/Hides Get Zip Code by City field
/*		(function toggleZipByCity() {
				$(".get-zip").toggle(
						function() {
								$(this).next(".city-container").fadeIn(100);
						},
						function() {
								$(this).next(".city-container").fadeOut(100);
						}
				);
		})(); */

		// Find Zip Code by City Functionality
		// http://1300grams.com/2009/08/17/jquery-autocomplete-with-json-jsonp-support-and-overriding-the-default-search-parameter-q/
/*		(function getCityZip() {
				$(".find-zip").autocomplete("http://ws.geonames.org/searchJSON", {
				   dataType: 'jsonp',
				   parse: function(data) {
				     var rows = new Array();
				     data = data.geonames;
				     for(var i=0; i<data.length; i++){
				       rows[i] = { data:data[i], value:data[i].name, result:data[i].name };
				       }
				       return rows;
				     },
				     formatItem: function(row, i, n) {
				       return row.name + ', ' + row.adminCode1;
				     },
				     extraParams: {
				       q: '',
				       limit: '',
				       country: 'US',
				       featureClass: 'P',
				       style: 'full',
				       maxRows: 100,
				       name_startsWith: function () { return $(".find-zip").val() }
				     },
				     max: 100
				});
		})(); */
		
		// Put Zip Code in Input Field
/*		(function returnZip() {
				$(".return-zip").
		
		
		})(); */

});