	jQuery().ready(initVacancy);

	function initVacancy(){
		var vacances=jQuery('.vacancy span').bind('click',sh_vacancy);
		

	}
	var vacancy_in_process=false;
	function sh_vacancy(){
		if(vacancy_in_process) return false;
		vacancy_in_process=true;
		var obj=jQuery(this).parent().children('div').eq(0);
		if(!obj.is(':visible')) obj.show('slow',function(){vacancy_in_process=false;}); else  obj.hide('slow',function(){vacancy_in_process=false;});
	}


