// <![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('toggleQuestionOneW', 'click', function(event) {
	
// We stop the default link behaviour
Event.stop(event);
	
// We give the ID's of the elements to toggle...
$('QuestionsOneAnswerOneW', 'QuestionsOneAnswerTwoW', 'QuestionsOneAnswerThreeW', 'QuestionsOneAnswerFourW').invoke('toggle');

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