// JavaScript Document



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