// JavaScript Document

$(function() {
	
	$("#copy").removeClass("fixedHeight");
	
	$("#copy h4").addClass("clickable");
	
	$("#copy h4").click(function() {
		$(this).next().toggle('blind');
		return false;
	 }).next().hide();
	
});
