var now = new Date();

function updateVacancyScreenCounter(amount){
	$("#vacancy_counter").html(amount);
}

function updateVacancyCounter(){
	if(document.getElementById("vacancy_search")){
		$.getJSON("/jobsrep/ctrl/ajaxSubmitController/?registeredaction=1022&"+$("#vacancy_search").serialize(),
			function(respone){
				updateVacancyScreenCounter(respone.data.vacancy_data.vacancy_count);
			}
		)
	}
}

$(document).ready(function () {
    updateVacancyCounter();
});
