$(document).ready(function() {	

//############### __services.php ###############//

// Show/Hide content

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

});
