$(document).ready(function(){
						   
	//select all links with class of toggle, find the next div after the parent and hide them all.
		$('a.toggle').parent('p').next('div').hide();
		
	// Make all links with class toggle read - show examples
		$('a.toggle').html('Show examples');
	// set up the show hide toggle
		$('a.toggle').toggle(function(){
	// change the button text to 'hide examples					  
		$(this).html('Hide examples');
	//then find the next div after the parent and hide it.
		$(this).parent('p').next('div').slideToggle('slow');return false;},
	// Set up the reverse of the toggle...	
		function(){
	// change the button text to 'hide examples						  
		$(this).html('Show examples');
	//then find the next div after the parent and show it.
		$(this).parent('p').next('div').slideToggle('slow');return false;
			
		});
	

	});
