// JavaScript Document

jQuery().ready(function(){
	$.ui.accordion.animations.accease = function(options) {
		this.slide(options, {
			easing: options.down ? "easeout" : "easein",
			duration: options.down ? 800 : 400
		});
	};
										
	$('#navigation').accordion({
				active: false,
				header: 'h5',
				navigation: true,
				event: 'click',
				fillSpace: false,
				animated: 'accease',
				autoHeight: false,
				alwaysOpen: false
			});
		})