jQuery.ui.accordion.animations.quick = function(options) {
	this.slide(options, {
		duration: 100
	});
 };		

// Support page accordion
jQuery(document).ready(function(){
    $("#supportOverview #contentOptions").accordion({
			navigation: true,
			header: '.accHead',
			animated: "quick",
			autoHeight: true,
			selectedClass: "accActive",
			event: 'click'
	});
});

// Find your perfect faucet accordion
jQuery(document).ready(function(){
    $("#perfectOverview #contentOptions").accordion({
			navigation: true,
			header: '.accHead',
			animated: "quick",
			autoHeight: false,
			selectedClass: "accActive",
			event: 'click'
	});
	
	jQuery('#perfectOverview #contentOptions h4').bind('click', function(){
		jQuery('#perfectOverview #contentOptions h3').removeClass('accHead');
	})
});