/**
 * @author mbedard
 */
	
/*
 * This function is for the expanding content. 
 * It needs to be call on each fragment that will uses this functionality 
 */	
function expander(){
	$(".sectionHeader").click(function(){
			if ($(this).hasClass("select").toString() == "false") {
				$(this).addClass("select").next().slideDown("slow");
			} else if ($(this).hasClass("select").toString() == "true") {
				$(this).removeClass("select").next().slideUp("slow");
			} else {
				// Do nothing	
			}
	});
}