$(document).ready(function() {	

//############### __about.php ###############//

// Show/Hide content

	//Set text for show/hide link
	var show_about_content = 'Show details';
	var hide_about_content = 'Hide details';
	
	//Hide content but no first
	$(".standard_content .content").hide();
	
	//Get content
	$(".standard_content .content")
		//insert html after 
		.after('<p><a href="" class="show-about-content cpa" title="Show content">'+show_about_content+'</a></p>');
		
	//Capture clicks on the link
		$("a.show-about-content").click(function() {
			
			//Change link depending on whether the element is shown or hidden
			$(this).html($(this).html()==hide_about_content ? show_about_content : hide_about_content);
	
			$(this).parent().prev(".content").slideToggle('normal');	
			
			//return false so any link destination is not followed
			return false;
		});
		
// Read more/less

	//Set text for show/hide link
	var more_about_content = 'Read More';
	var less_about_content = 'Read Less';
	
	//Hide content but no first
	$(".standard_content .about_container").hide();
	
	//Get content
	$(".standard_content .about_container")
		//insert html after 
		.after('<p><a href="" class="read-about-content show cpa" title="Show content">'+more_about_content+'</a></p>');
		
	//Capture clicks on the link
		$("a.read-about-content").click(function() {
			
			//Change link depending on whether the element is shown or hidden
			$(this).html($(this).html()==less_about_content ? more_about_content : less_about_content);
	
			$(this).parent().prev(".about_container").slideToggle('normal');	
			
			//return false so any link destination is not followed
			return false;
		});
	
//##########################################//	

});
