jQuery().ready(function(){	
	// set global defaults for all following Accordions, will be valid for #list1, #list2 and #list4, #list3 sets them for itself
	jQuery.Accordion.setDefaults({
		showSpeed: 500,
		hideSpeed: 150
	});	
	// second simple Accordion with special markup
	jQuery('#menu').Accordion({
		active: 'a.selected',
		header: 'a.head'
	});
});