IE6MenuFix

Copied custom JavaScript file called " IE6MenuFix.js" to all web font end server's below location

c$\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS\1033\IE6Fix\

Note: Create WSP and deploy this script

2. Add below script in Master page of the site.

-before closer of </form> tag.

<script type="text/javascript">

if (typeof(overrideMenu_HideItems) == 'function' && typeof(Menu_HideItems) == 'function')

{

Menu_HideItems = overrideMenu_HideItems;

}

if (typeof(overridePopOut_SetPanelHeight) == 'function' && typeof(PopOut_SetPanelHeight) == 'function')

{

PopOut_SetPanelHeight = overridePopOut_SetPanelHeight;

}

if (typeof(overridePopOut_Position) == 'function' && typeof(PopOut_Position) == 'function')

{

PopOut_Position = overridePopOut_Position;

}

if (typeof(overridePopOut_Show) == 'function' && typeof(PopOut_Show) == 'function')

{

PopOut_Show = overridePopOut_Show;

}

</script>

Done