﻿$(document).ready(function() {
	$().SPServices.SPAutocomplete({
		sourceList: "Census Data",				// The name of the list which contains the values
		sourceColumn: "Areaname",				// The static name of the column which contains the values
		columnName: "Title",				// The display name of the column in the form
		numChars: 3,						// Wait until this number of characters has been typed before attempting any actions
		ignoreCase: true,					// If set to true, the function ignores case, if false it looks for an exact match
		slideDownSpeed: 100,				// Speed at which the div should slide down when values match (milliseconds or ["fast" | "slow"])
		debug: true						// If true, show error messages; if false, run silent
	});
});