			$(document).ready(function() {
			    
			    
			    $(".subaccordion").each( function(){
				$(this).accordion({
					active: false,
					collapsible: true,
					clearStyle: true,
					autoheight: false,
					event: 'click',
					showSpeed: 'slow',
					hideSpeed: 'slow',
					header: ' > .subacc > a'
				});
			    });

			    $("#accordion").accordion({
					active: false,
					collapsible: true,
					clearStyle: true,
				    	autoheight: false,
				   	event: 'click',
					showSpeed: 'slow',
					hideSpeed: 'slow',
					header: ' > .subacc > a'
			    });
			    
			});
