$(document).ready(function(){
	/* START: DL Expand & Collapse */
		$(".sDLExp").before("<ul class=\"sDLExpCol\"><li class=\"sDLExpShow\"><a href=\"#\">Expand all</a></li><li class=\"sDLExpHide\"><a href=\"#\">Collapse all</a></li></ul>");
		$(".sDLExpHide").hide();
		$(".sDLExpShow").click(function(){$(this).toggle();$(this).next().toggle();$(this).parent().next().children("DD").show();$(this).parent().next().children("DT").removeClass("sClose").addClass("sOpen"); return false;});
		$(".sDLExpHide").click(function(){$(this).toggle();$(this).prev().toggle();$(this).parent().next().children("DD").hide();$(this).parent().next().children("DT").addClass("sClose").removeClass("sOpen"); return false;});
		$(".sDLExp DT").addClass("sClose").toggle(function(){$(this).toggleClass("sClose").toggleClass("sOpen");},function(){$(this).toggleClass("sClose").toggleClass("sOpen");}).click(function(){$(this).next().toggle();});
		$(".sDLExp DT STRONG").each(function(){$(this).replaceWith("<a href='#'>" + $(this).text() + "</a>");});
		$(".sDLExp DD").hide();
	/* END: DL Expand & Collapse */
});