$(document).ready(function() {

	$("div.read_more").hide();
	
	$("a.read_more").click(function() {
		var $this = $(this);
		var section_name = $this.attr("href");
		var section_class = section_name.replace("#", "");
		var $section = $("." + section_class);
		
		if ($section.css("display") == "none") {
			$section.slideDown();
			$this.data("original_text", $this.html());
			$this.html("Close");
			
			// Notify GA
			
		} else {
			$section.slideUp();
			$this.html($this.data("original_text"));
		}
		
		return false;		
	});
	
});

