﻿function over(o){o.src = o.src.substr(0, (o.src.length - 4)) + '_ro' + o.src.substr(o.src.length - 4);}
function out(o){o.src = o.src.substr(0, (o.src.length - 7)) + o.src.substr(o.src.length - 4);}

function over_fi(o)
{
    document.getElementById('fit_information_menu').style.display = 'inline';
}

function out_fi(o,e)
{
    //USED TO CORRECT ISSUE WITH ROLLING OVER LINKS (MENU WOULD DISAPPEAR)

    if (e.relatedTarget)
    {
        if ((e.relatedTarget != o) && (e.relatedTarget.tagName != 'A'))
        {
        document.getElementById('fit_information_menu').style.display = 'none';
        }
    }
    else
    {
        //IE 8 and below cannot detect related target
        //alert('IE 8 and below - fromElement is: ' + e.fromElement);
        //alert('IE 8 and below - toElement id is: ' + e.toElement.id);
        if ((e.toElement.id != 'fit_information_menu') && (e.toElement.id != 'fit_information_menu_1') && (e.toElement.id != 'fit_information_menu_2') && (e.toElement.id != 'fit_information_menu_3') && (e.toElement.id != 'fit_information_link'))
        {
        document.getElementById('fit_information_menu').style.display = 'none';
        }
    }
}

function over_ab(o)
{
document.getElementById('about_bali_menu').style.display = 'inline';
}

function out_ab(o,e)
{
  //USED TO CORRECT ISSUE WITH ROLLING OVER LINKS (MENU WOULD DISAPPEAR)
    if (e.relatedTarget)
    {
        if ((e.relatedTarget != o) && (e.relatedTarget.tagName != 'A'))
        {
            document.getElementById('about_bali_menu').style.display = 'none';
        }
    }
    else
    {
        //IE 8 and below cannot detect related target
        //alert('IE 8 and below - fromElement is: ' + e.fromElement);
        //alert('IE 8 and below - toElement id is: ' + e.toElement.id);
        if ((e.toElement.id != 'about_bali_menu') && (e.toElement.id != 'about_bali_menu_1') && (e.toElement.id != 'about_bali_menu_2') && (e.toElement.id != 'about_bali_link'))
        {
            document.getElementById('about_bali_menu').style.display = 'none';
        }
    }
}

function set_active_link(active_link)
{
document.getElementById(active_link).innerHTML = '<img src="/images/2011/nav/' + active_link.substring(4) + '_ro.png" />';
}
