$(document).ready(function () {
	// Search Bar Autocomplete
	$.ajax({
		type: "GET",
		url: "/ajax/autoComplete/",
		data: '',
		async: true,
		dataType: 'json',
		success: function(data)
		{
			$("#searchstring").autocomplete(data, { matchContains: true, selectFirst: false  });
		}
	});
    
	if ( $("#location_input")) {
		$.ajax({
			type: "GET",
			url: "/ajax/autoCompleteLocation/",
			data: '',
			async: true,
			dataType: 'json',
			success: function(data)
			{
				$("#location_input").autocomplete(data, { matchContains: true, selectFirst: false  });
			}
		});
	}
});