window.addEvent('domready', function() 
							{
								
								//create our Accordion instance
								var myAccordion = new Accordion(
																	$('accordion'), 
																	'div.grey', 
																	'div.element', 
																	{
																		opacity: false,
																		onActive: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#41464D');
																			//toggler.innerHTML="<img class='min_img' src='images/minus.png' alt='minus' />"
																		},
																		onBackground: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#528CE0');
																			//toggler.innerHTML="<img class='plus_img' src='images/plus.png' alt='plus' />"
																		}
																	}
																);
																
								var sliderAccordion = new Accordion(
																	$('accordion'), 
																	'div.simple_box1', 
																	'div.element', 
																	{
																		opacity: false,
																		onActive: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#41464D');
																			//toggler.innerHTML="<img class='min_img' src='images/minus.png' alt='minus' />"
																		},
																		onBackground: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#528CE0');
																			//toggler.innerHTML="<img class='plus_img' src='images/plus.png' alt='plus' />"
																		}
																	}
																);
								
								var faqAccordion = new Accordion(
																	$('accordion'), 
																	'div.simple_box_faq', 
																	'div.element_faq', 
																	{
																		opacity: false,
																		onActive: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#41464D');
																			//toggler.innerHTML="<img class='min_img' src='images/minus.png' alt='minus' />"
																		},
																		onBackground: function(toggler, element)
																		{
																			//toggler.setStyle('color', '#528CE0');
																			//toggler.innerHTML="<img class='plus_img' src='images/plus.png' alt='plus' />"
																		}
																	}
																);
							}
				);
														
														

	//add click event to the "add section" link
	//$('add_section').addEvent('click', function(event) {
//		event.stop();
//		
//		// create toggler
//		
//		
//		// create content
//		//var content = new Element('div', {
////			
////		});
//		
//		// position for the new section
//		//var position = 0;
//		
//		// add the section to our myAccordion using the addSection method
//		//myAccordion.addSection(toggler, content, position);
//	});


