window.addEvent('domready', function() 
{
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'h3.toggler', 'div.element', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#FFFFFF');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#FFFFFF');
		}
	});
	//create our Accordion instance
	var myAccordion1 = new Accordion($('accordion1'), 'h3.toggler1', 'div.element1', {
		opacity: false,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#FFFFFF');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#FFFFFF');
		}
	});
	document.getElementById("outer").style.visibility="visible";

	//add click event to the "add section" link
	/*$('add_section').addEvent('click', function(event) {
		event.stop();
		
		// create toggler
		var toggler = new Element('h3', {
			'class': 'toggler',
			'html': 'Common descent'
		});
		
		// create content
		var content = new Element('div', {
			'class': 'element',
			'html': 'The creative team at Synergy are professional graphic designers with years of experience, ready to give your product or service that distinctive edge.Talented specialist designers, crafting words and images to form attention getting advertising and promotional material.Your company image is important, the visual impression you make in the market place needs to be consistent through all forms of communication with your clients - corporate branding, brochures, leaflets, catalogues, posters, signs and web sites.Logo design and colour schemes carried through all marketing and advertising material will give your business that professional appearance and impact. '
		});
		
		// position for the new section
		var position = 0;
		
		// add the section to our myAccordion using the addSection method
		myAccordion.addSection(toggler, content, position);
	});*/
});