function init()
{

var i = 0;

$('navbar_module1').down('li a').observe('mouseover', hideallnav);
$('navbar_module1').down('li a',4).observe('mouseover', hideallnav);
$('navbar_module1').down('li a',5).observe('mouseover', hideallnav);
function hideallnav(event) { $('nav_top_1').hide();$('nav_top_2').hide();$('nav_top_3').hide();}

$('navbar_module1').down('li a', 1).observe('mouseover', shownav1);
function shownav1(event) { $('nav_top_1').show();$('nav_top_2').hide();$('nav_top_3').hide();}

$('navbar_module1').down('li a', 2).observe('mouseover', shownav2);
function shownav2(event) { $('nav_top_2').show();$('nav_top_1').hide();$('nav_top_3').hide();}

$('navbar_module1').down('li a', 3).observe('mouseover', shownav3);
function shownav3(event) { $('nav_top_3').show();$('nav_top_2').hide();$('nav_top_1').hide();}


if(window.location.pathname.endsWith('/success_stories')
|| window.location.pathname.endsWith('/testimonials')
|| window.location.pathname.endsWith('/case_studies')
){$('nav_top_1').show();}


if(window.location.pathname.endsWith('/news_events')
|| window.location.pathname.endsWith('/events')
|| window.location.pathname.endsWith('/top_100_company')
|| window.location.pathname.endsWith('/news')
|| window.location.pathname.endsWith('/press_room')
){$('nav_top_2').show();}

if(window.location.pathname.endsWith('/about_us')
|| window.location.pathname.endsWith('/board_members')
|| window.location.pathname.endsWith('/overview')
|| window.location.pathname.endsWith('/executive_leadership')
|| window.location.pathname.endsWith('/affiliations_certifications')
|| window.location.pathname.endsWith('/online_brochure')
){$('nav_top_3').show();}


if(window.location.pathname.endsWith('/eco-scaling')
|| window.location.pathname.endsWith('/health-information-technology-management')
|| window.location.pathname.endsWith('/healthcare-data-analytics')
|| window.location.pathname.endsWith('/how_it_works')
|| window.location.pathname.endsWith('/medical-records-scanning')
|| window.location.pathname.endsWith('/healthcare-data-analyze')
|| window.location.pathname.endsWith('/healthcare-efficiency')
){$('navbar_border_2').addClassName('navbar_border_selected');$('navbar_2').show();$('nav_2').onmouseover = null;$('nav_2').onmouseout = null;}

if(window.location.pathname.endsWith('/health-plans-medical-records-retrieval')
|| window.location.pathname.endsWith('/healthcare_plans')
|| window.location.pathname.endsWith('/contract_research_organizations')
|| window.location.pathname.endsWith('/patients')
){$('navbar_border_3').addClassName('navbar_border_selected');$('navbar_3').show();$('nav_3').onmouseover = null;$('nav_3').onmouseout = null;}

if(window.location.pathname.endsWith('/how_we_help')
|| window.location.pathname.endsWith('/365247real-timetransparency')
|| window.location.pathname.endsWith('/healthcare-data-analysis')
|| window.location.pathname.endsWith('/hedis_health_outcomes_improvement')
|| window.location.pathname.endsWith('/health_advocacy_programs')
|| window.location.pathname.endsWith('/payment_integrity_auditing')
|| window.location.pathname.endsWith('/HCC_Management_Risk_Adjustment')
){$('navbar_border_4').addClassName('navbar_border_selected');$('navbar_4').show();$('nav_4').onmouseover = null;$('nav_4').onmouseout = null;}

if(window.location.pathname.endsWith('/solutions')
|| window.location.pathname.endsWith('/odis')
|| window.location.pathname.endsWith('/financial_clinical_business_support')
|| window.location.pathname.endsWith('/odis_alert')
|| window.location.pathname.endsWith('/odis_itools')
|| window.location.pathname.endsWith('/odis_datamart')
){$('navbar_border_5').addClassName('navbar_border_selected');$('navbar_5').show();$('nav_5').onmouseover = null;$('nav_5').onmouseout = null;}



}






window.onload = init;