$(document).ready(function() {	

// Show/Hide Pricing &amp; Postage

	//Set text for show/hide link
	var show_about_content = 'Show Sizes, Pricing &amp; Postage';
	var hide_about_content = 'Hide Sizes, Pricing &amp; Postage';
	
	//Hide content but no first
	$(".standard_content .content").hide();
	
	//Get content
	$(".standard_content .content")
		//insert html after 
		.after('<p><a href="" class="show-pp-content cpa" title="Show Pricing &amp; Postage">'+show_about_content+'</a></p>');
		
	//Capture clicks on the link
		$("a.show-pp-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").toggle('normal');	
			
			//return false so any link destination is not followed
			return false;
		});
		

});
