	jQuery().ready(function(){
				
		// set global defaults
		/*jQuery.Accordion.setDefaults({
			showSpeed: 150,
			hideSpeed: 150			 
		});
		
		jQuery('#sideNav').Accordion({
			active: 'a.selected',
			header: 'a.navHead',
			alwaysOpen: false
		});*/
		
	// set global defaults for all following Accordions, will be valid for #list1, #list2 and #list4, #list3 sets them for itself
		jQuery.Accordion.setDefaults({
			showSpeed: 400,
			hideSpeed: 150
		});
	
	jQuery('#list3').Accordion({
			header: 'div.title',
			active: false,
			alwaysOpen: false/*,
			animated: false*/
		});
	
	
	});