$(document).ready(function () {
	prepDegrees();
});

function prepDegrees() {
	var x = 1;
	$("ul.degrees li").addClass('degree').find("h3").each(function () {
		var thistext = $(this).html();		
		var h3link = document.createElement('a');
		h3link.href = '';
		$(h3link).bind('click', function () {
			if (this.className.match('active')) $(this).removeClass('active').parent().parent().removeClass('active');
			else $(this).addClass('active').parent().parent().addClass('active');
			return false;
		});
		$(h3link).html(thistext);
		$(this).html('').append(h3link);
	});
}