	$(function() {
		$.ajax({
			url: "/xml/products.xml",
			dataType: "xml",
			success: function( xmlResponse ) {
				var data = $( "product", xmlResponse ).map(function() {
					return {
						value: $( "name", this ).text() ,
						id: $( "url", this ).text()
					};
				}).get();
				$( "#product-search" ).autocomplete({
					source: data,
					minLength: 0,
					select: function( event, ui ) {
						document.location.href = ui.item.id;
					}
				});
			}
		});
	});

