//below is the javascript for the News show/hide
$(document).ready(function(){
	$(".News dd").css("display", "none");
	$(".News").addClass("js_enabled");
	$(".News dt").click().toggle(function() {
		$(this).next().show("slow");
	}, function() {
		$(this).next().hide("slow");
	});
});
