$(document).ready(function() {

	$(".cpd-unit p").css("display", "none");
	$('<a href="#reveal">Reveal</a>').addClass("toggle").addClass("show").insertAfter(".cpd-unit h2")
	
	$(".toggle").click(function() {
		if($(this).hasClass('show')) {
			$(this).text("Hide");
			$(this).parent().children("p").slideDown("normal");
			$(this).addClass("hide");
			$(this).removeClass("show");
		} else {
			$(this).text("Reveal");
			$(this).parent().children("p").slideUp("normal");
			$(this).addClass("show");
			$(this).removeClass("hide");
		}
		return false;
		
	});
	
});