// Expander Module

$(document).ready(function(){
	
	$("[rel=expander]").click(function() {
		
	
		if ($(this).nextAll(".collapsed:first").css('display') == 'none') {
			
			$(this).text("Click to collapse.");
		}
		else {
			if ($(this).hasClass('courselist')) {
				$(this).text("Click to expand course list.");	
			}
			else {
				$(this).text("Click to expand.");	
			}
		}
		
		$(this).nextAll(".collapsed:first").slideToggle();
	});
	
});
