// <![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('toggleQuestionThreeW', 'click', function(event) {
	
// We stop the default link behaviour
Event.stop(event);
	
// We give the ID's of the elements to toggle...
$('QuestionsThreeAnswerOneW', 'QuestionsThreeAnswerTwoW', 'QuestionsThreeAnswerThreeW', 'QuestionsThreeAnswerFourW').invoke('toggle');

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