// JavaScript Document

//This sections enables easing for dlToggle
jQuery.extend( jQuery.easing, {
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	}
});

// This section sets selectors for dlToggle use.
$(function(){
	$('.faq').dlToggle({showSpeed:300, showEasing: 'easeOutQuad',hideEasing: 'easeInQuad', toggleAll: true});
	$('#showall').dlToggle({showSpeed:500, showEasing: 'easeOutQuad', toggleAll: true});
})
