﻿/* Expand Choices - For use on Bachelor's Page */
/* by Alexander Roessner */
function expandChoices(toExpand) {
		var str = toExpand.name;
		var strIndex = 0;
		if (str.indexOf('_on') == '-1') {
			document.getElementById('moreChoices').innerHTML = "<ul id='con_side_nav_list'><li><a href='bsn_apply.shtml'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Basic &amp; 2nd Options</a></li><li><a href='rnbsn_apply.shtml'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- RN to BSN Option</a></li></ul>";
			toExpand.name += '_on';
		} else {
			strIndex = parseInt(str.indexOf('_on'));
			toExpand.name = toExpand.name.substring(0,strIndex);
			document.getElementById('moreChoices').innerHTML = "";
		}
	}
