		window.addEvent('domready', function(){
			var accordion = new Accordion('h3.atStart', 'div.atStart', {
				opacity: true, alwaysHide: true,
				onActive: function(toggler, element){
					toggler.setStyle('color', '#ff3300');
				},
				
				onBackground: function(toggler, element){
					toggler.setStyle('color', '#ffffff');
				}
			}, $('accordion'));
			
			var newTog = new Element('h3', {'class': 'toggler'}).setHTML('<img src="http://www.amolenuvolette.it/alpha/hdfailurev/faq0.jpg" border="0" alt="wannabe frequently asked questions." title="wannabe frequently asked questions." />');
			var newEl = new Element('div', {'class': 'element'}).setHTML('<p>thank you for clicking here. you are curious, and the curious-one is the web surfer i like.<br />nobody clicks where it is not properly pointed out! i think this is the limit of web-art design, client-side.<br />but it seems that you are in this state of mind. or it was by chance?<br />everywhere in my works you can find this type of hidden links: so, try to spot them all.<br />here is your first reward: <a href="" target="_blank">click </a>!</p><br /><br />');
			accordion.addSection(newTog, newEl, 0);
		});