function pageDynamics(){
	if($(".expander").length > 0){
		var i = 0;
		jQuery.each($(".expander"), function(){
			$(this).html($(this).html() + " [click to open/close]");
			if(i > 0){
				$(this).next().hide("slow");
			}
			i++;
		});
		$(".expander").css("cursor", "pointer").click(function(){
			$(this).next().toggle("slow");
		});
	}

	$("ul.sf-menu").superfish(); 
}
