// execute your scripts when the DOM is ready. this is a good habit 
$(function() { 

	$("#accordion").accordion({
//		active: false,
//		collapsible: true,
		header: 'a.toggle',
		autoHeight: false,
		navigation: true
	});
	
}); 			
