$(document).ready(function() {
 
	$(".accordion").accordion({
		active: false,
		collapsible: true,
		autoHeight: false,
		navigation: true,
		header: '.trigger'
	});
	
	$(".trigger").click(function(event){
		window.location.hash=this.hash;
	});
 
});
