<!--
var left=0
var topProductMenu=0

function getDeterminerPositionLoad() {
    var offsetTrail = document.getElementById('determiner');
    var offsetLeft = 0;
    var offsetTop = 0;
    while (offsetTrail) {
        offsetLeft += offsetTrail.offsetLeft;
        offsetTop += offsetTrail.offsetTop;
        offsetTrail = offsetTrail.offsetParent;
    }
    if (navigator.userAgent.indexOf("Mac") != -1 &&  typeof document.body.leftMargin != "undefined") {
		offsetTop=offsetTop-20;
		offsetLeft=offsetLeft-80;
    }
	left=offsetLeft;
	topProductMenu=offsetTop;
	target=document.getElementById('mtnav');
	target.style.top =topProductMenu+"px";
	target.style.left = left+3+"px";
		
	if (MTNAV_COMPAT) initMTNav();
	
	toggleLoad();
	
	targetBnnr=document.getElementById('bnnr');
	topix=topProductMenu+(g_aSections.length*20)+10
	if ((g_openingSection != null) && (g_closingSection != null)) {
		targetBnnrHeight=g_openingSection.xf-g_closingSection.xf + 20; 
		topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10;
	} else {
		if (g_openingSection != null)	{ targetBnnrHeight=g_openingSection.xf; topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10; }
		if (g_closingSection != null)  { targetBnnrHeight=g_closingSection.xf; topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10; }
	}
	targetBnnr.style.top =topix+"px"; 
	targetBnnr.style.left = left+3+"px";
	}
	

	
	function getDeterminerPosition() {
    var offsetTrail = document.getElementById('determiner');
    var offsetLeft = 0;
    var offsetTop = 0;
    while (offsetTrail) {
        offsetLeft += offsetTrail.offsetLeft;
        offsetTop += offsetTrail.offsetTop;
        offsetTrail = offsetTrail.offsetParent;
    }
	left=offsetLeft;
	topProductMenu=offsetTop;
	target=document.getElementById('mtnav');
	target.style.top =topProductMenu+"px";
	target.style.left = left+3+"px";
	
	targetBnnr=document.getElementById('bnnr');
	topix=topProductMenu+(g_aSections.length*20)+10
	if ((g_openingSection != null) && (g_closingSection != null)) {
		targetBnnrHeight=g_openingSection.xf-g_closingSection.xf + 20;
		topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10; 
	} else {
		if (g_openingSection != null)	{ targetBnnrHeight=g_openingSection.xf; topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10; }
		if (g_closingSection != null)  { targetBnnrHeight=g_closingSection.xf; topix=topProductMenu+(targetBnnrHeight-20)+(g_aSections.length*20)+10;}
	}
	targetBnnr.style.top =topix+"px"; 
	targetBnnr.style.left = left+3+"px";
	}

//-->