// this tells jquery to run the function below once the DOM is ready
$(document).ready(function(){

	$('.togglebox').hide();

// toggles the box on clicking the noted link  
 	$('span.togglebutton').click(function() {
// enables the toggle slide & controls speed
	$('.togglebox').slideToggle(100);
	return false;
  	});
  	
})
