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

