// JavaScript Document

$(document).ready(function(){
	jQuery('ul.oneAccordion').flexAccordion({
		speed: 'fast',	// see jQuery slideDown function for available options
		activeitem: 'none', 	// 'none' to close all sliders or specify the index of the slider you want to open (0,1,2...)
		showheaders: true, 	// Specify if you want to show a slide header (span)
		headerEl: 'span', 	// Specify the element to be the header of each slide
		contentEl: 'div'		// Specify the element to be the container of each slide
	});

});

