var grant = 'Grant'; var scholarship = 'Scholarship'; var loan = 'Loan'; var work_study = 'Work Study';
var descriptionBlocks = new Array('select_description','grant_description','scholarship_description','loan_description','work_study_description');
var informationBlocks = new Array('grant_information','scholarship_information','loan_information','work_study_information');//select_information
function hide_sections()
{
	if(document.getElementById('grant_active')){ document.getElementById('grant_active').id = 'grant_button'; }
	if(document.getElementById('scholarship_active')){ document.getElementById('scholarship_active').id = 'scholarship_button'; }
	if(document.getElementById('loan_active')){ document.getElementById('loan_active').id = 'loan_button'; }
	if(document.getElementById('work_study_active')){ document.getElementById('work_study_active').id = 'work_study_button'; }
}

function showSection(section)
{
	var title = '';
	hide_sections();
	
	hideBlocks(descriptionBlocks);
	hideBlocks(informationBlocks);
	
	document.getElementById(section+'_description').style.display = 'block';
	document.getElementById(section+'_information').style.display = 'block';
	
	if('grant'==section){ title = grant;} if('scholarship'==section){ title = scholarship;} if('loan'==section){ title = loan;} if('work_study'==section){ title = work_study;}
	
	document.getElementById('fa_information_title').innerHTML = title + ' Information';
	document.getElementById(section+'_button').id = section+'_active';
}
