// JavaScript Document

jQuery(document).ready(function(){
	$( "#accordion" ).accordion({autoHeight: false,collapsible: true,active:false});

	$('.accordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();

	$( "#subaccordion" ).accordion({autoHeight: false,collapsible: true,active:false});

	$('.subaccordion .head').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});
