function show(div_id) {
	document.getElementById(div_id + '-a').style.display = 'block';
	document.getElementById(div_id + '-a').style.visibility = 'visible';
	document.getElementById(div_id).className = 'arrowdown';
}

function hide(div_id) {
	document.getElementById(div_id + '-a').style.display = 'none';
	document.getElementById(div_id + '-a').style.visibility = 'hidden';
	document.getElementById(div_id).className = '';
}

function showhide(div_id) {
	if (document.getElementById(div_id + '-a').style.display == 'none') {
		show(div_id);
	}
	else {
		hide(div_id);
	}
}

function showall() {
	show('faq-intl');
	show('faq-posths');
	show('faq-finaid');
	show('faq-application');
	show('faq-deadlines');
	show('faq-decisions');
	show('faq-tests');
	show('faq-testscores');
	show('faq-toefl');
	show('faq-advstanding');
	show('faq-univdegree');
	show('faq-transcript');
	show('faq-notcomplete');
	show('faq-visas');
	show('faq-degree');
	show('faq-colcon');
	show('faq-subjects');
	show('faq-buseng');
	show('faq-where');
	show('faq-rated');
	show('faq-liberalarts');
	show('faq-university');
	show('faq-employment');
	show('whyMVP');
}

function hideall() {
	hide('faq-intl');
	hide('faq-posths');
	hide('faq-finaid');
	hide('faq-application');
	hide('faq-deadlines');
	hide('faq-decisions');
	hide('faq-tests');
	hide('faq-testscores');
	hide('faq-toefl');
	hide('faq-advstanding');
	hide('faq-univdegree');
	hide('faq-transcript');
	hide('faq-notcomplete');
	hide('faq-visas');
	hide('faq-degree');
	hide('faq-colcon');
	hide('faq-subjects');
	hide('faq-buseng');
	hide('faq-where');
	hide('faq-rated');
	hide('faq-liberalarts');
	hide('faq-university');
	hide('faq-employment');
	hide('whyMVP');
}

window.onload = hideall;
