// <![CDATA[
		Event.observe(document, 'dom:loaded', function() {
			// tabs
			 
			
			Event.observe('toggleParagraphs', 'click', function(e) {
				// We stop the default link behaviour
				Event.stop(e);
				// We give the ID's of the element to toggle...
				$('paragraphOne', 'paragraphTwo').invoke('toggle');
			}, false);

		
			// for every element with an toggleme class...
			$$('.toggleMe', '.toggleLinkTutorials-Description').each(function(item) {
				// we put on an eventhandler of the click type
				Event.observe(item, 'click', function(event){ 
					Event.stop(event);
					// when clicked, traverse the DOM: 2 steps up (0 & 1), and select that sibling (next(0)), and toggle that shit.
					Event.element(event).up(1).next(0).toggle();
				});
			});

			$$('.toggleExample').each(function(item) {
				// we put on an eventhandler of the click type
				Event.observe(item, 'click', function(event){ 
					// when clicked, traverse the DOM: 2 steps up (0 & 1), and select that sibling (next(0)), and toggle that shit.
					Event.stop(event);
					Event.element(event).up(0).next(0).toggle();
				}, false);
			});

		});
		// ]]>