// Accordion jquery

$(document).ready(function() {
		$("#accordion-management div.accordian-content-wrap").hide(); //Hide for safari (doesn't work consistantly when done through css)
		$("#accordion-management div.accordian-content-wrap").show(); //Show all so accordian can do it's thing)
						  
		//the speed of the animation for the accordian
		$.ui.accordion.animations.superbounce = function(options) {
			this.slide(options, {
				easing: "easein",
				duration: 700

			});
		 };
		
		$("#accordion-management").accordion({
			event: "click",
			header: "h2",
			autoHeight:false,
			animated: 'superbounce',
			active: "h2.ShowFirst", //ShowFirst class goes on link you want to display by default when page is first opened
			selectedClass: "main-accordian-onstate"
		});
		
		return false
	});



