/**
* @author Dipl.-Ing. (FH) Martin Mayrhofer-Reinhartshuber
* @copyright 2010, Netzmühle Internetagentur
* @since 18.02.2010
*/

$(document).ready(function() {
	var options = {
			cacheLength: 1,
			matchSubset: false
	};
	
	
	var urlCompany = "/ajax/wir/companies/quicksearch/company";
	var urlSector = "/ajax/wir/companies/quicksearch/sector";
	
	$("#quicksearch_company").autocomplete(urlCompany, options);
	$("#quicksearch_sector").autocomplete(urlSector, options);
});
