jQuery().ready(function(){	
	// applying the settings
	jQuery('#sideMenu').Accordion({
		active: false,
		header: 'h3.head',
		navigation: true,
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
	jQuery('#xtraMenu').Accordion({
		active: false,
		header: 'h4.head',
		navigation: true,
		alwaysOpen: false,
		animated: true,
		showSpeed: 400,
		hideSpeed: 800
	});
});	