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