/*
 * Copyright (c) 2009 Discovery Health Systems.
 * The information contained in this file is the intellectual property of Discovery Health Systems (the owner).
 * No part of this file may be changed, copied or removed by persons other than the owner or persons
 * authorised to do so by the owner.
 */
/**
 * Set state and controls the accordian events.
 * Options that can be set:                     mpho41  l3s3t3d1mph0
 * 
 *      expandfirst: tells the accordion that the very first list needs to be expanded
 *                   on page load.
 */
var _accordian = function() {
  $("#accordion").accordion({autoHeight:false, clearStyle:true, collapsible:true, active:0, header:'h6' });
  /*$('ul.accordian ul').hide();
  $('ul.expandfirst ul:first').show();
  $('ul li span.accordian_expand').click(function() {
    $(this).prev().slideToggle('normal');
    $(this).next().slideToggle('normal');
  });*/
};

/*Start the accordian script...*/
$(document).ready(function() {
  _accordian();
});



