function updateVacancyCounter(){
	if($("#vacancy_search").length>0){
		$.getJSON("/jobsrep/ctrl/WebController/?registeredaction=1022&_="+$.ajaxRan()+"&"+$("#vacancy_search").serialize(),function(respone){
			$("#vacancy_counter").html(respone.data.vacancyCount);
		});
	}
}

$(document).ready(function () {
    updateVacancyCounter();
});

