$(document).ready(function(){
	$("#faq-accordion").accordion({ collapsible: true,autoHeight: false,active: false,navigation: true });
	$(".accordion").accordion({ collapsible: true,autoHeight: false,active: false,navigation: true });
	
	var anchor = location.hash;
	anchor = anchor.split('#');
	anchor = anchor[1];
	$('#faq-accordion h3 a[name=' + anchor + ']').click();
});	

