// <![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('toggleQuestionFourW', 'click', function(event) {
	
// We stop the default link behaviour
Event.stop(event);
	
// We give the ID's of the elements to toggle...
$('QuestionsFourAnswerOneW', 'QuestionsFourAnswerTwoW', 'QuestionsFourAnswerThreeW', 'QuestionsFourAnswerFourW', 'QuestionsFourAnswerFiveW', 'QuestionsFourAnswerSixW', 'QuestionsFourAnswerSevenW').invoke('toggle');

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