﻿
//-----------------------------------------------------------------------------
function AddSpecialStyles ()
//-----------------------------------------------------------------------------
{	
	var isIE6 = navigator.userAgent.toLowerCase().indexOf('msie 6') != -1;
	var isIE7 = navigator.userAgent.toLowerCase().indexOf('msie 7') != -1;
	
	if(isIE6 || isIE7) {
		var oHead 	= document.getElementsByTagName('head')[0];
		var oStyle	= document.createElement ("style");
		
		oStyle.setAttribute('type', 'text/css');
		oStyle.styleSheet.cssText = "#divMethodologyReferences .menuNavTable { "
									+ " width:100% !important; "
									+ "}"
									+ "#divMethodologyReferences .menuNavTable img{ "
									+ "position:absolute !important;"
									+ "top: -70px !important;"
									+ "}"
									+ "#divMethodologyReferences .menuNavTable tr{"
									+ "position:relative;"
									+ "top:70px;"
									+ "}";
							
		oHead.appendChild (oStyle);
	}
	
} // AddSpecialStyles

// Call the function

//-----------------------------------------------------------------------------
function OneLinkPageLoad()
//-----------------------------------------------------------------------------
{
	if(document.body) {
		AddSpecialStyles();
	}
	else {
		setTimeout("OneLinkPageLoad();",500);
	}
} //OneLinkPageLoad

OneLinkPageLoad();