$(document).ready(function() {
	$("#open-description").click(function() {
		if ($(this).attr('href') == '#open-description') {
			$(this).attr({'href': "#close-description"});
			$(this).html("Скрыть информацию о мероприятии");
			$("#description").css({'display': "block"});
		} else {
			$(this).attr({'href': "#open-description"});
			$(this).html("Подробнее о мероприятии");
			$("#description").css({'display': "none"});
		}
		
		return false;
	});
});