$(function() {
	$('.companion_country').autocomplete(baseUrl + '/ajax/getcountries/', {
		width: 260,
		selectFirst: false
	});
});

function companionFlushCache() {
	$('.companion_country').flushCache();
}

function companionRebindAll() {
	companionFlushCache();
	companionRebindCountryAutoComplete();
}

function companionRebindCountryAutoComplete() {
	$('.companion_country').removeData('events');
	
	$('.companion_country').autocomplete(baseUrl + '/ajax/getcountries/', {
		width: 260,
		selectFirst: false
	});
}

