function toggle_menu(p_this,p_event)
{
  $(p_this).adjacent('.accordion_content').invoke('toggle');
  var a_sibs = $(p_this).up('.menu-section').siblings();
  a_sibs.each(function(e){e.down('.accordion_content').hide();});
  Event.stop(p_event);
  return false;
}

function open_menu(p_menu)
{
  $(p_menu).down('.accordion_content').show();
}

function init()
{

if(window.location.pathname.endsWith('/about_us')
|| window.location.pathname.endsWith('/history')
|| window.location.pathname.endsWith('/management_bios')
){open_menu('accordian_menu_1');}

if(window.location.pathname.endsWith('/broker_treaty')
|| window.location.pathname.endsWith('/broker_treaty_products')
|| window.location.pathname.endsWith('/dft_bt')
|| window.location.pathname.endsWith('/broker_treaty_services')
){open_menu('accordian_menu_2');}

if(window.location.pathname.endsWith('/direct_treaty')
|| window.location.pathname.endsWith('/direct_treaty_products')
|| window.location.pathname.endsWith('/dft_dt')
|| window.location.pathname.endsWith('/direct_treaty_services')
){open_menu('accordian_menu_3');}

if(window.location.pathname.endsWith('/facultative_specialty')
|| window.location.pathname.endsWith('/facultative_specialty_products')
|| window.location.pathname.endsWith('/dft_fs')
|| window.location.pathname.endsWith('/facultative_specialty_services')
){open_menu('accordian_menu_4');}

if(window.location.pathname.endsWith('/accident_health')
|| window.location.pathname.endsWith('/accident_health_products')
|| window.location.pathname.endsWith('/dft_ah')
|| window.location.pathname.endsWith('/accident_health_services')
){open_menu('accordian_menu_5');}





}

window.onload = init;
