$(function () {
  $('UL.contactslist').accordion({
    // the drawer handle
    header: 'h2.contact_heading',
    
    // our selected class
    selectedClass: 'open',
    
     autoHeight: false,
    
    // match the Apple slide out effect
    event: 'mouseover'
    
  });
});
