$(document).ready(function() {
	$("dd").hide();
	$("dt").css("cursor", "pointer");
	$("dt").click(function() {
		if($(this).next().is(":visible") == false) {
			$("dd").slideUp();
			$(this).next().slideDown();
		}
		else { 
			$(this).next().slideUp(); 
		};
	});
	
	$('a[href^="mailto"]').each(function (i) {
		var temp = $(this).html();
		temp = temp.replace("[atte]","@");
		temp = temp.replace("[p]",".");
		$(this).html(temp);
		if($(this).attr("href")){
				var temphref = $(this).attr("href");
				temphref = temphref.replace("[atte]","@");
				temphref = temphref.replace("[p]",".");
				$(this).attr("href",temphref);
		}
	});

});
