var curExpandedSection = '';
	
function instantGrowth(sectionName) {
	if (curExpandedSection != sectionName) {
		if (curExpandedSection != '') {
			$(curExpandedSection).hide();
			$(sectionName).show();
			if (window.location.href.indexOf("/es/") > -1 && window.location.href.indexOf("news") > -1) {
				$(curExpandedSection.slice(0, curExpandedSection.length - 1) + "a").show();
				$(sectionName.slice(0, sectionName.length - 1) + "a").hide();
			}
		}
		else {
			$(sectionName).show();
			if (window.location.href.indexOf("/es/") > -1 && window.location.href.indexOf("news") > -1) {
				$(sectionName.slice(0, sectionName.length - 1) + "a").hide();
			}
		}
		curExpandedSection = sectionName;
	}
	else {
		$(sectionName).hide();
		if (window.location.href.indexOf("/es/") > -1 && window.location.href.indexOf("news") > -1) {
			$(sectionName.slice(0, sectionName.length - 1) + "a").show();
		}
		curExpandedSection = '';
	}
}