// <![CDATA[
// Making sure this code only executes when the document is loaded: this makes the DOM available to us
Event.observe(document, 'dom:loaded', function() {
	
	// When we click the link with ID toggleParagraphs we exec its function
	Event.observe('toggleQuestionTwoM', 'click', function(event) {
	
// We stop the default link behaviour
Event.stop(event);
	
// We give the ID's of the elements to toggle...
$('QuestionsTwoAnswerOneM', 'QuestionsTwoAnswerTwoM', 'QuestionsTwoAnswerThreeM', 'QuestionsTwoAnswerFourM').invoke('toggle');

	}, false);
	
});
// ]]>
