function showFooterSchool(){
	var courseNums = [ 130, 146, 150, 251, 255, 285 ];
	var titles = [ "Introduction to Information Systems", "Microcomputer Applications", "Introduction to Computer Logic and Programming", "C++ Programming", "Java Programming", "Object-Oriented Programming (Advanced Java)" ];
	var tag;
	document.write('<div id="footer-school">');
		document.write('<div id="footer-left">');
			document.write('<a href="../index.html" class="big-n-bold">school.tbattles.com</a>');
		document.write('</div>');
		document.write('<div id="footer-right">');
		for (var c = 0; c < courseNums.length; c++){
			tag = '<a href="../' + courseNums[c] + '/index.html" title="' + titles[c] + '" class="course-button">CIS ' + courseNums[c] + '</a>';
			document.write(tag);
		}
		document.write('</div>');
	document.write('</div>');
}
