
function HideContent(d) {
	document.getElementById(d).style.display = "none";
}
function ShowContent(d) {
	document.getElementById(d).style.display = "block";
}
function ReverseDisplay(d) {
	if(document.getElementById(d).style.display == "none") document.getElementById(d).style.display = "block";
	else document.getElementById(d).style.display = "none";
	$('.vertnav-left-wrapper').css({
		height:parseInt($('.hr-left').height())+parseInt($('.hr-left').css('padding-top'))
	});
	boxHeight = parseInt($('.hr-left').height()) + parseInt($('.hr-left').css('padding-bottom')) + parseInt($('.hr-left').css('padding-top'));
	$('.hr-left').css({'margin-top':-1*boxHeight});
}