$(document).ready(function() {
	
	$('#navListOrgs').change(function() {
		var url = '/hq/orgs/view/' + $(this).val();
	  window.location.href = url;
	});
	
	$('#findOrg')
		.autocomplete('/hq/orgs/find_org',
			{
				delay:10,
				minChars:2,
				max:40,
				matchSubset:1,
				mustMatch:0,
				matchContains:0,
				cacheLength:1,
				scrollHeight:180,
			}
		)
		.result(function(event, li) {
			var url = '/hq/orgs/view/' + li[1];
	  	window.location.href = url;
		});
		
});

