$(function() {
	$(".professions-element a").live("click", function(e) {
		e.preventDefault();

		$.cookie("profession", this.className, {
			path: "/"
		});

		$(this).closest(".overlay").data("overlay").close();

		$("#block-news").find("ul.positions li[data-id=" + this.className + "] a").click();
	});
});

