function updateVacancyCounter(){
	if($("#vacancy_search").length>0){
		$.getJSON("/controller/WebController/?wcId=1022&_="+$.ajaxRan()+"&"+$("#vacancy_search").serialize(),function(response){
			if(response.data.vacancyCount=="1"){
				$("#vacancy_counter").find("span.multiple_found").hide();
			} else {
				$("#vacancy_counter").find("span.multiple_found").show();
			}
			$("#vacancy_count").hide().html(response.data.vacancyCount).fadeIn("slow");
		});
	}
}

$(document).ready(function () {
	updateVacancyCounter();
});

