$(document).ready(function(){

		$(".toggle_container").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active");
			$(this).html('<a href="">Read Less...</a>');
		}, function () {
		$(this).removeClass("active");
		$(this).html('<a href="">Read More...</a>');
		
	});

	$("h2.trigger").click(function(){
	
		$(this).prev(".toggle_container").slideToggle("slow");
		
	});

});

