$(document).ready(function() {
	$(".education_hoursdescription:first").css("display","inline-block");
	$(".recent_vacancy_block:first").addClass("recent_vacancy_block_selected");
	
	$(".recent_vacancy_block").mouseenter(function() {
    	$(".education_hoursdescription").each(function() {
    		 this.style.display="none";
    	});
		$(".recent_vacancy_block").each(function() {
    		 $(this).removeClass().addClass("recent_vacancy_block");
    	});
		$(this).children(".education_hoursdescription").css("display", "inline-block");
		$(this).addClass("recent_vacancy_block_selected");
    });
});
