jQuery().ready(function(){	
// applying the settings
jQuery('.accordion').Accordion({
  active: 'h3.selected',
  header: 'h3.head',
  alwaysOpen: false,
  animated: true,
  showSpeed: 400,
  hideSpeed: 800
});
jQuery('.accordion2').Accordion({
  active: 'h3.selected',
  header: 'h3.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
});
});	
