﻿function loadNav()
{

var nav_menu=document.getElementById('ctl01_NavCtl');

var links=nav_menu.getElementsByTagName('li');
for(var i=0;i<links.length;i++)
{
    links[i].onmouseover=function()
    {this.className=this.className.replace(' hover','');
     this.className+=' hover';
        fixMargin(this);
     }
     
    links[i].onmouseout=function()
    {this.className=this.className.replace(' hover','');}
}
}

function fixMargin(control)
{
if(control&&control.childNodes.length>2&&navigator.appName=="Microsoft Internet Explorer")
{
control.childNodes[2].style.marginLeft=-(control.offsetWidth)-813;
}
}
