$(document).ready(function() {
	$("#associationDesc").hide();
	$("#showAssociationDesc").show();
	$("#showAssociationDescLink").click(function() {
		$("#associationDesc").show();
		$("#showAssociationDesc").hide();
	});
	$("#hideAssociationDescLink").click(function() {
		$("#showAssociationDesc").show();
		$("#associationDesc").hide();
	});
});