// PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

DOM = (document.getElementById) ? 1 : 0;
NS4 = (document.layers) ? 1 : 0;
// We need to explicitly detect Konqueror
// because Konqueror 3 sets IE = 1 ... AAAAAAAAAARGHHH!!!
Konqueror = (navigator.userAgent.indexOf('Konqueror') > -1) ? 1 : 0;
// We need to detect Konqueror 2.2 as it does not handle the window.onresize event
Konqueror22 = (navigator.userAgent.indexOf('Konqueror 2.2') > -1 || navigator.userAgent.indexOf('Konqueror/2.2') > -1) ? 1 : 0;
Konqueror30 =
	(
		navigator.userAgent.indexOf('Konqueror 3.0') > -1
		|| navigator.userAgent.indexOf('Konqueror/3.0') > -1
		|| navigator.userAgent.indexOf('Konqueror 3;') > -1
		|| navigator.userAgent.indexOf('Konqueror/3;') > -1
		|| navigator.userAgent.indexOf('Konqueror 3)') > -1
		|| navigator.userAgent.indexOf('Konqueror/3)') > -1
	)
	? 1 : 0;
Konqueror31 = (navigator.userAgent.indexOf('Konqueror 3.1') > -1 || navigator.userAgent.indexOf('Konqueror/3.1') > -1) ? 1 : 0;
// We need to detect Konqueror 3.2 and 3.3 as they are affected by the see-through effect only for 2 form elements
Konqueror32 = (navigator.userAgent.indexOf('Konqueror 3.2') > -1 || navigator.userAgent.indexOf('Konqueror/3.2') > -1) ? 1 : 0;
Konqueror33 = (navigator.userAgent.indexOf('Konqueror 3.3') > -1 || navigator.userAgent.indexOf('Konqueror/3.3') > -1) ? 1 : 0;
Opera = (navigator.userAgent.indexOf('Opera') > -1) ? 1 : 0;
Opera5 = (navigator.userAgent.indexOf('Opera 5') > -1 || navigator.userAgent.indexOf('Opera/5') > -1) ? 1 : 0;
Opera6 = (navigator.userAgent.indexOf('Opera 6') > -1 || navigator.userAgent.indexOf('Opera/6') > -1) ? 1 : 0;
Opera56 = Opera5 || Opera6;
IE = (navigator.userAgent.indexOf('MSIE') > -1) ? 1 : 0;
IE = IE && !Opera;
IE5 = IE && DOM;
IE4 = (document.all) ? 1 : 0;
IE4 = IE4 && IE && !DOM;

// detect firefox for veritcal relative menu position errors.
Firefox = (navigator.userAgent.indexOf('Firefox') > -1 ) ? 1 : 0;


// PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

layerLeft = new Array();
layerTop = new Array();

function setVisibility(layer, on)
{
	if (on) {
		if (DOM) {
			document.getElementById(layer).style.visibility = 'visible';
		} else if (NS4) {
			document.layers[layer].visibility = 'show';
		} else {
			document.all[layer].style.visibility = 'visible';
		}
	} else {
		if (DOM) {
			document.getElementById(layer).style.visibility = 'hidden';
		} else if (NS4) {
			document.layers[layer].visibility = 'hide';
		} else {
			document.all[layer].style.visibility = 'hidden';
		}
	}
}

function isVisible(layer)
{
	if (DOM) {
		return (document.getElementById(layer).style.visibility == 'visible');
	} else if (NS4) {
		return (document.layers[layer].visibility == 'show');
	} else {
		return (document.all[layer].style.visibility == 'visible');
	}
}

function setLeft(layer, x)
{
layerLeft[layer] = x;
	if (DOM && !Opera5) {
		document.getElementById(layer).style.left = x + 'px';
	} else if (Opera5) {
		document.getElementById(layer).style.left = x;
	} else if (NS4) {
		document.layers[layer].left = x;
	} else {
		document.all[layer].style.pixelLeft = x;
	}
}

function getOffsetLeft(layer)
{
	var value = 0;
	if (DOM) {	// Mozilla, Konqueror >= 2.2, Opera >= 5, IE
		object = document.getElementById(layer);
		value = object.offsetLeft;
//alert (object.tagName + ' --- ' + object.offsetLeft);
		while (object.tagName != 'BODY' && object.offsetParent) {
			object = object.offsetParent;
//alert (object.tagName + ' --- ' + object.offsetLeft);
			value += object.offsetLeft;
		}
	} else if (NS4) {
		value = document.layers[layer].pageX;
	} else {	// IE4 IS SIMPLY A BASTARD !!!
		if (document.all['IE4' + layer]) {
			layer = 'IE4' + layer;
		}
		object = document.all[layer];
		value = object.offsetLeft;
		while (object.tagName != 'BODY') {
			object = object.offsetParent;
			value += object.offsetLeft;
		}
	}
	return (value);
}

function setTop(layer, y)
{
layerTop[layer] = y;
	if (Firefox) {
		y+=14;
	}
	if (DOM && !Opera5) {
		document.getElementById(layer).style.top = y + 'px';
	} else if (Opera5) {
		document.getElementById(layer).style.top = y;
	} else if (NS4) {
		document.layers[layer].top = y;
	} else {
		document.all[layer].style.pixelTop = y;
	}
}

function getOffsetTop(layer)
{
// IE 5.5 and 6.0 behaviour with this function is really strange:
// in some cases, they return a really too large value...
// ... after all, IE is buggy, nothing new
	var value = 0;
	if (DOM) {
		object = document.getElementById(layer);
		value = object.offsetTop;
		while (object.tagName != 'BODY' && object.offsetParent) {
			object = object.offsetParent;
			value += object.offsetTop;
		}
	} else if (NS4) {
		value = document.layers[layer].pageY;
	} else {	// IE4 IS SIMPLY A BASTARD !!!
		if (document.all['IE4' + layer]) {
			layer = 'IE4' + layer;
		}
		object = document.all[layer];
		value = object.offsetTop;
		while (object.tagName != 'BODY') {
			object = object.offsetParent;
			value += object.offsetTop;
		}
	}
	return (value);
}

function setWidth(layer, w)
{
	if (DOM) {
		document.getElementById(layer).style.width = w;
	} else if (NS4) {
//		document.layers[layer].width = w;
	} else {
		document.all[layer].style.pixelWidth = w;
	}
}

function getOffsetWidth(layer)
{
	var value = 0;
	if (DOM && !Opera56) {
		value = document.getElementById(layer).offsetWidth;
	} else if (NS4) {
		value = document.layers[layer].document.width;
	} else if (Opera56) {
		value = document.getElementById(layer).style.pixelWidth;
	} else {	// IE4 IS SIMPLY A BASTARD !!!
		if (document.all['IE4' + layer]) {
			layer = 'IE4' + layer;
		}
		value = document.all[layer].offsetWidth;
	}
	return (value);
}

function setHeight(layer, h)	// unused, not tested
{
	if (DOM) {
		document.getElementById(layer).style.height = h;
	} else if (NS4) {
//		document.layers[layer].height = h;
	} else {
		document.all[layer].style.pixelHeight = h;
	}
}

function getOffsetHeight(layer)
{
	var value = 0;
	if (DOM && !Opera56) {
		value = document.getElementById(layer).offsetHeight;
	} else if (NS4) {
		value = document.layers[layer].document.height;
	} else if (Opera56) {
		value = document.getElementById(layer).style.pixelHeight;
	} else {	// IE4 IS SIMPLY A BASTARD !!!
		if (document.all['IE4' + layer]) {
			layer = 'IE4' + layer;
		}
		value = document.all[layer].offsetHeight;
	}
	return (value);
}

function getWindowWidth()
{
	var value = 0;
	if ((DOM && !IE) || NS4 || Konqueror || Opera) {
		value = window.innerWidth;
//	} else if (NS4) {
//		value = document.width;
	} else {	// IE
		if (document.documentElement && document.documentElement.clientWidth) {
			value = document.documentElement.clientWidth;
		} else if (document.body) {
			value = document.body.clientWidth;
		}
	}
	if (isNaN(value)) {
		value = window.innerWidth;
	}
	return (value);
}

function getWindowXOffset()
{
	var value = 0;
	if ((DOM && !IE) || NS4 || Konqueror || Opera) {
		value = window.pageXOffset;
	} else {	// IE
		if (document.documentElement && document.documentElement.scrollLeft) {
			value = document.documentElement.scrollLeft;
		} else if (document.body) {
			value = document.body.scrollLeft;
		}
	}
	return (value);
}

function getWindowHeight()
{
	var value = 0;
	if ((DOM && !IE) || NS4 || Konqueror || Opera) {
		value = window.innerHeight;
	} else {	// IE
		if (document.documentElement && document.documentElement.clientHeight) {
			value = document.documentElement.clientHeight;
		} else if (document.body) {
			value = document.body.clientHeight;
		}
	}
	if (isNaN(value)) {
		value = window.innerHeight;
	}
	return (value);
}

function getWindowYOffset()
{
	var value = 0;
	if ((DOM && !IE) || NS4 || Konqueror || Opera) {
		value = window.pageYOffset;
	} else {	// IE
		if (document.documentElement && document.documentElement.scrollTop) {
			value = document.documentElement.scrollTop;
		} else if (document.body) {
			value = document.body.scrollTop;
		}
	}
	return (value);
}

// PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

useTimeouts = 1;
timeoutLength = 1000;	// time in ms; not significant if useTimeouts = 0;
shutdownOnClick = 0;

loaded = 0;
layersMoved = 0;
layerPoppedUp = '';

timeoutFlag = 0;
if (Opera56 || IE4) {
	useTimeouts = 0;
}
if (NS4 || Opera56 || IE4) {
	shutdownOnClick = 1;
}

currentY = 0;
function grabMouse(e)	// for NS4
{
	currentY = e.pageY;
}
if (NS4) {
	document.captureEvents(Event.MOUSEDOWN | Event.MOUSEMOVE);
	document.onmousemove = grabMouse;
}

function seeThroughElements(show)
{
	if (show) {
		foobar = 'visible';
	} else {
		foobar = 'hidden';
	}
	for (i=0; i<toBeHidden.length; i++) {
		toBeHidden[i].style.visibility = foobar;
	}
}

function shutdown()
{
	for (i=0; i<numl; i++) {
		LMPopUpL(listl[i], false);
	}
	layerPoppedUp = '';
	if (Konqueror || IE5) {
		seeThroughElements(true);
	}
}
if (shutdownOnClick) {
	if (NS4) {
		document.onmousedown = shutdown;
	} else {
		document.onclick = shutdown;
	}
}

function setLMTO()
{
	if (useTimeouts) {
		timeoutFlag = setTimeout('shutdown()', timeoutLength);
	}
}

function clearLMTO()
{
	if (useTimeouts) {
		clearTimeout(timeoutFlag);
	}
}

function moveLayerX(menuName)
{
	if (!loaded || (isVisible(menuName) && menuName != layerPoppedUp)) {
		return;
	}
	if (father[menuName] != '') {
		if (!Opera5 && !IE4) {
			width0 = lwidth[father[menuName]];
			width1 = lwidth[menuName];
		} else if (Opera5) {
			// Opera 5 stupidly and exaggeratedly overestimates layers widths
			// hence we consider a default value equal to $abscissaStep
			width0 = abscissaStep;
			width1 = abscissaStep;
		} else if (IE4) {
			width0 = getOffsetWidth(father[menuName]);
			width1 = getOffsetWidth(menuName);
		}
		onLeft = getOffsetLeft(father[menuName]) - width1 + menuLeftShift;
		onRight = getOffsetLeft(father[menuName]) + width0 - menuRightShift;
		windowWidth = getWindowWidth();
		windowXOffset = getWindowXOffset();
//		if (NS4 && !DOM) {
//			windowXOffset = 0;
//		}
		if (onLeft < windowXOffset && onRight + width1 > windowWidth + windowXOffset) {
			if (onRight + width1 - windowWidth - windowXOffset > windowXOffset - onLeft) {
				onLeft = windowXOffset;
			} else {
				onRight = windowWidth + windowXOffset - width1;
			}
		}
		if (back[father[menuName]]) {
			if (onLeft < windowXOffset) {
				back[menuName] = 0;
			} else {
				back[menuName] = 1;
			}
		} else {
//alert(onRight + ' - ' + width1 + ' - ' +  windowWidth + ' - ' + windowXOffset);
			if (onRight + width1 > windowWidth + windowXOffset) {
				back[menuName] = 1;
			} else {
				back[menuName] = 0;
			}
		}
		if (back[menuName]) {
			setLeft(menuName, onLeft);
		} else {
			setLeft(menuName, onRight);
		}
	}
	moveLayerY(menuName);	// workaround needed for Mozilla < 1.4 for MS Windows
}

function moveLayerY(menuName)
{
	if (!loaded || (isVisible(menuName) && menuName != layerPoppedUp)) {
		return;
	}
	if (!layersMoved) {
		moveLayers();
		layersMoved = 1;
	}
	if (!NS4) {
		newY = getOffsetTop('ref' + menuName);
	} else {
		newY = currentY;
	}
	newY += menuTopShift;
	layerHeight = getOffsetHeight(menuName);
	windowHeight = getWindowHeight();
	windowYOffset = getWindowYOffset();
	if (newY + layerHeight > windowHeight + windowYOffset) {
		if (layerHeight > windowHeight) {
			newY = windowYOffset;
		} else {
			newY = windowHeight + windowYOffset - layerHeight;
		}
	}
	if (Math.abs(getOffsetTop(menuName) - newY) > thresholdY) {
		setTop(menuName, newY);
	}
}

function moveLayerX1(menuName, father)
{
	if (!lwidthDetected) {
		return;
	}
	if (!Opera5 && !IE4) {
		width1 = lwidth[menuName];
	} else if (Opera5) {
		// Opera 5 stupidly and exaggeratedly overestimates layers widths
		// hence we consider a default value equal to $abscissaStep
		width1 = abscissaStep;
	}
	foobar = getOffsetLeft(father + menuName);
if (!IE4) {
	windowWidth = getWindowWidth();
	windowXOffset = getWindowXOffset();
	if (foobar + width1 > windowWidth + windowXOffset) {
		foobar = windowWidth + windowXOffset - width1;
	}
	if (foobar < windowXOffset) {
		foobar = windowXOffset;
	}
}
	setLeft(menuName, foobar);
}

function layersOverlap(layer, i)
{
	if (Konqueror22) {
		return true;
	}

//	xa1 = getOffsetLeft(layer);
//setLeft(layer, xa1);
	xa1 = layerLeft[layer];
	xa2 = xa1 + getOffsetWidth(layer);
//setWidth(layer, xa2-xa1);
//	ya1 = getOffsetTop(layer);
//setTop(layer, ya1);
	ya1 = layerTop[layer];
	ya2 = ya1 + getOffsetHeight(layer);
//setHeight(layer, ya2-ya1);
//alert(':' + xa1 + ':' + xa2 + ':' + ya1 + ':' + ya2 + ':');

	xb1 = toBeHiddenLeft[i];
	xb2 = xb1 + toBeHidden[i].offsetWidth;
	yb1 = toBeHiddenTop[i];
	yb2 = yb1 + toBeHidden[i].offsetHeight;
//alert(':' + xb1 + ':' + xb2 + ':' + yb1 + ':' + yb2 + ':');

	if(xb1>xa1) xa1=xb1; if(xb2<xa2) xa2=xb2;
	if(yb1>ya1) ya1=yb1; if(yb2<ya2) ya2=yb2;

	return (xa2>xa1 && ya2>ya1);
}

function seeThroughWorkaround(menuName, on)
{
	for (i=0; i<toBeHidden.length; i++) {
		if (layersOverlap(menuName, i)) {
			if (on) {
				toBeHidden[i].style.visibility = 'hidden';
			} else {
				toBeHidden[i].style.visibility = 'visible';
			}
		}
	}
}

function LMPopUpL(menuName, on)
{
	if (!loaded) {
		return;
	}
	if (!layersMoved) {
		moveLayers();
		layersMoved = 1;
	}
	setVisibility(menuName, on);
}

function LMPopUp(menuName, isCurrent)
{
	if (!loaded || menuName == layerPoppedUp || (isVisible(menuName) && !isCurrent)) {
		return;
	}
	if (menuName == father[layerPoppedUp]) {
		LMPopUpL(layerPoppedUp, false);
//		seeThroughWorkaround(menuName, false);
	} else if (father[menuName] == layerPoppedUp) {
		LMPopUpL(menuName, true);
		seeThroughWorkaround(menuName, true);
	} else {
		shutdown();
		foobar = menuName;
		do {
			LMPopUpL(foobar, true);
			seeThroughWorkaround(foobar, true);
			foobar = father[foobar];
		} while (foobar != '')
	}
/*
	if (layerPoppedUp == '') {
		seeThroughElements(false);
	}
*/
	layerPoppedUp = menuName;
}

function resizeHandler()
{
	if (NS4) {
		window.location.reload();
	}
	shutdown();
	for (i=0; i<numl; i++) {
		setLeft(listl[i], 0);
		setTop(listl[i], 0);
	}
	if (toBeHidden != null && toBeHidden.length > 0) {
		seeThroughCoordinatesDetection();
	}
//	moveLayers();
	layersMoved = 0;
}
window.onresize = resizeHandler;

function yaresizeHandler()
{
	if (window.innerWidth != origWidth || window.innerHeight != origHeight) {
		if (Konqueror22 || Opera5) {
			window.location.reload();	// Opera 5 often fails this
		}
		origWidth  = window.innerWidth;
		origHeight = window.innerHeight;
		resizeHandler();
	}
	setTimeout('yaresizeHandler()', 500);
}
function loadHandler()
{
	if (Konqueror22 || Opera56) {
		origWidth  = window.innerWidth;
		origHeight = window.innerHeight;
		yaresizeHandler();
	}
}
window.onload = loadHandler;

function fixieflm(menuName)
{
	if (DOM) {
		setWidth(menuName, '100%');
	} else {	// IE4 IS SIMPLY A BASTARD !!!
		document.write('</div>');
		document.write('<div id="IE4' + menuName + '" style="position: relative; width: 100%; visibility: visible;">');
	}
}

// PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

function scanChildren(element)
{
	var counter = element.childNodes.length;
        for (var i=0; i<counter; i++) {
                foobar = element.childNodes.item(i);
		if (	( (Konqueror22 || Konqueror30 || Konqueror31) &&
			 (  foobar.nodeName == 'INPUT' || foobar.nodeName == 'input'
			 || foobar.nodeName == 'SELECT' || foobar.nodeName == 'select'
			 || foobar.nodeName == 'TEXTAREA' || foobar.nodeName == 'textarea'
			 )
			)
			||
// Konqueror 3.2 and 3.3 need hiding only for the following two form elements, but, alas,
// at the time of this writing (Konqueror 3.2.3 and 3.3.0-rc2), hiding of such two form elements
// on Konqueror 3.2 and 3.3 does not work, it is affected by the following bug: http://bugs.kde.org/72885
			( (Konqueror32 || Konqueror33) &&
			 (  ((foobar.nodeName == 'SELECT' || foobar.nodeName == 'select') && foobar.size > 1)
			 || foobar.nodeName == 'TEXTAREA' || foobar.nodeName == 'textarea'
			 )
			)
			||
			( IE &&
			 ( foobar.nodeName == 'SELECT' || foobar.nodeName == 'select' )
			)
		) {
			toBeHidden[toBeHidden.length] = foobar;
		}
                if (foobar.childNodes.length > 0) {
                        scanChildren(foobar);
                }
        }
}

function seeThroughCoordinatesDetection()
{
	if (!((Konqueror && !Konqueror22) || IE5)) {
		return;
	}
	for (i=0; i<toBeHidden.length; i++) {
		object = toBeHidden[i];
		toBeHiddenLeft[i] = object.offsetLeft;
		while (object.tagName != 'BODY' && object.offsetParent) {
			object = object.offsetParent;
			toBeHiddenLeft[i] += object.offsetLeft;
		}
		object = toBeHidden[i];
		toBeHiddenTop[i] = object.offsetTop;
		while (object.tagName != 'BODY' && object.offsetParent) {
			object = object.offsetParent;
			toBeHiddenTop[i] += object.offsetTop;
		}
	}
}

function seeThroughInit()
{
    if ((Konqueror || IE5) && document.getElementById('phplmseethrough')) {
	    scanChildren(document.getElementById('phplmseethrough'));
    }

    seeThroughCoordinatesDetection();
}
// beginning of menu header - PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

menuTopShift = 2;
menuRightShift = -2;
menuLeftShift = 2;

var thresholdY = 5;
var abscissaStep = 140;

toBeHidden = new Array();
toBeHiddenLeft = new Array();
toBeHiddenTop = new Array();

listl = ['L1','L3','L10','L16','L23','L39','L40','L44','L49','L56','L61','L63','L67','L70'];
var numl = listl.length;

father = new Array();
for (i=1; i<=71; i++) {
	father['L' + i] = '';
}
father_keys = ['L2','L3','L4','L5','L6','L7','L8','L9','L10','L11','L12','L13','L14','L15','L16','L17','L18','L19','L20','L21','L22','L24','L25','L26','L27','L28','L29','L30','L31','L32','L33','L34','L35','L36','L37','L38','L40','L41','L42','L43','L44','L45','L46','L47','L48','L49','L50','L51','L52','L53','L54','L55','L56','L57','L58','L59','L60','L61','L62','L64','L65','L66','L68','L69','L70','L71'];
father_vals = ['L1','L1','L3','L3','L3','L3','L3','L3','L1','L10','L10','L10','L10','L1','L1','L16','L16','L16','L16','L16','L16','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L23','L39','L40','L40','L40','L39','L44','L44','L44','L44','L39','L49','L49','L49','L39','L39','L39','L39','L56','L56','L56','L39','L39','L61','L63','L63','L63','L67','L67','L67','L70'];
for (i=0; i<father_keys.length; i++) {
	father[father_keys[i]] = father_vals[i];
}

lwidth = new Array();
var lwidthDetected = 0;

function moveLayers()
{
	if (!lwidthDetected) {
		for (i=0; i<numl; i++) {
			lwidth[listl[i]] = getOffsetWidth(listl[i]);
		}
		lwidthDetected = 1;
	}
	if (IE4) {
		for (i=0; i<numl; i++) {
			setWidth(listl[i], abscissaStep);
		}
	}
	var main_menuTOP = getOffsetTop('main_menuL1');
	var main_menuHEIGHT = getOffsetHeight('main_menuL1');
	setTop('L1', main_menuTOP + main_menuHEIGHT);
	moveLayerX1('L1', 'main_menu');
	setTop('L23', main_menuTOP + main_menuHEIGHT);
	moveLayerX1('L23', 'main_menu');
	setTop('L39', main_menuTOP + main_menuHEIGHT);
	moveLayerX1('L39', 'main_menu');
	setTop('L63', main_menuTOP + main_menuHEIGHT);
	moveLayerX1('L63', 'main_menu');
	setTop('L67', main_menuTOP + main_menuHEIGHT);
	moveLayerX1('L67', 'main_menu');

}

back = new Array();
for (i=1; i<=71; i++) {
	back['L' + i] = 0;
}

// end of menu header - PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

function spin2menu_init(container_id)
{
    var oMenuContainer = document.getElementById(container_id);
    if (!oMenuContainer)
        return;

    var oBody = document.body;

    seeThroughInit();

    // Build the menu
    {
var oTbl = document.createElement("TABLE");
oTbl.border = 0;
oTbl.cellspacing = 0;
oTbl.cellpadding = 0;
oMenuContainer.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);

var oMenu = document.createElement("DIV");
oMenu.className = "horbar";
oCell.appendChild(oMenu);

oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oMenu.appendChild(oTbl);

oRow = oTbl.insertRow(-1);
{
var oCell = oRow.insertCell(-1);
//oCell.className = "horbarcell";
oCell.className = "horbaritem";
var oMenuItem = document.createElement("DIV");
oMenuItem.id = "main_menuL1";
oMenuItem.className = "horbaritem";
oMenuItem.onmouseover = clearLMTO;
oMenuItem.onmouseout = setLMTO;
oCell.appendChild(oMenuItem);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/6/DigitalGlobe+Products";
oLink.onmouseover = function () { moveLayerX1('L1', 'main_menu') ; LMPopUp('L1', false); };
oLink.title = "";
oLink.target = "_self";
oMenuItem.appendChild(oLink);
oLink.innerHTML += "Products";


}
{
var oCell = oRow.insertCell(-1);
//oCell.className = "horbarcell";
oCell.className = "horbaritem";
var oMenuItem = document.createElement("DIV");
oMenuItem.id = "main_menuL23";
oMenuItem.className = "horbaritem";
oMenuItem.onmouseover = clearLMTO;
oMenuItem.onmouseout = setLMTO;
oCell.appendChild(oMenuItem);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/95/Industries";
oLink.onmouseover = function () { moveLayerX1('L23', 'main_menu') ; LMPopUp('L23', false); };
oLink.title = "";
oLink.target = "_self";
oMenuItem.appendChild(oLink);
oLink.innerHTML += "Industries";


}
{
var oCell = oRow.insertCell(-1);
//oCell.className = "horbarcell";
oCell.className = "horbaritem";
var oMenuItem = document.createElement("DIV");
oMenuItem.id = "main_menuL39";
oMenuItem.className = "horbaritem";
oMenuItem.onmouseover = clearLMTO;
oMenuItem.onmouseout = setLMTO;
oCell.appendChild(oMenuItem);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/16/About+Us";
oLink.onmouseover = function () { moveLayerX1('L39', 'main_menu') ; LMPopUp('L39', false); };
oLink.title = "";
oLink.target = "_self";
oMenuItem.appendChild(oLink);
oLink.innerHTML += "About Us";


}
{
var oCell = oRow.insertCell(-1);
//oCell.className = "horbarcell";
oCell.className = "horbaritem";
var oMenuItem = document.createElement("DIV");
oMenuItem.id = "main_menuL63";
oMenuItem.className = "horbaritem";
oMenuItem.onmouseover = clearLMTO;
oMenuItem.onmouseout = setLMTO;
oCell.appendChild(oMenuItem);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/22/How+to+Purchase";
oLink.onmouseover = function () { moveLayerX1('L63', 'main_menu') ; LMPopUp('L63', false); };
oLink.title = "";
oLink.target = "_self";
oMenuItem.appendChild(oLink);
oLink.innerHTML += "Purchase";


}
{
var oCell = oRow.insertCell(-1);
//oCell.className = "horbarcell";
oCell.className = "horbaritem";
var oMenuItem = document.createElement("DIV");
oMenuItem.id = "main_menuL67";
oMenuItem.className = "horbaritem";
oMenuItem.onmouseover = clearLMTO;
oMenuItem.onmouseout = setLMTO;
oCell.appendChild(oMenuItem);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/15/Support";
oLink.onmouseover = function () { moveLayerX1('L67', 'main_menu') ; LMPopUp('L67', false); };
oLink.title = "";
oLink.target = "_self";
oMenuItem.appendChild(oLink);
oLink.innerHTML += "Support";


}
}

    // Build the submenus
	// beginning of menu footer - PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/

{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L1";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL2";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/6/DigitalGlobe+Products";
oLink.onmouseover = function () { LMPopUp('L1', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Products Overview ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL3";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_category_id=9";
oLink.onmouseover = function () { moveLayerX('L3') ; moveLayerY('L3') ; LMPopUp('L3', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Imagery ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL10";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_category_id=12";
oLink.onmouseover = function () { moveLayerX('L10') ; moveLayerY('L10') ; LMPopUp('L10', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Value-Added Solutions ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL15";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/226/Web+Services";
oLink.onmouseover = function () { LMPopUp('L1', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Web Services ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL16";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/83/Resources";
oLink.onmouseover = function () { moveLayerX('L16') ; moveLayerY('L16') ; LMPopUp('L16', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Resources ");
oLink.appendChild(oText);

}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L3";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL4";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=1";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Basic Satellite Imagery ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL5";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=2";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Standard Satellite Imagery ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL6";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=7";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Orthorectified Satellite Imagery ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL7";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=22";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Orthorectified Aerial Imagery ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL8";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=10";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("CitySphere ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL9";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=23";
oLink.onmouseover = function () { LMPopUp('L3', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Basic Stereo Pair Imagery ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L10";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL11";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=24";
oLink.onmouseover = function () { LMPopUp('L10', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("ImageScape ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL12";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=25";
oLink.onmouseover = function () { LMPopUp('L10', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("WorldView Elevation Suite ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL13";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=26";
oLink.onmouseover = function () { LMPopUp('L10', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Crisis Event Service ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL14";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/48/Products?product_id=19";
oLink.onmouseover = function () { LMPopUp('L10', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("ImageConnect ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L16";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL17";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/130/Documents+%26+Tutorials";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Documents & Tutorials ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL18";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/82/Content+Collection+Systems";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Content Collection Systems ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL19";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://browse.digitalglobe.com";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_blank";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Satellite Coverage ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL20";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://dgl.us.neolane.net/res/dgl/survey/NIA_CovMaps.jsp?deliveryId=7464980";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_blank";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Aerial Coverage ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL21";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/70/Product+Samples";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Imagery Product Samples ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL22";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/155";
oLink.onmouseover = function () { LMPopUp('L16', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Product Uses ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L23";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL24";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/95/Industries";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Industries Overview ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL25";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=27";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("AEC ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL26";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=16";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Defense & Intelligence ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL27";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=37";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Entertainment ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL28";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=2";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Government - Federal ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL29";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=18";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Government - State/Local ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL30";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=33";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Humanitarian  ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL31";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=32";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Insurance ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL32";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=24";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("LBS/Navigation ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL33";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=21";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Mining ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL34";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=1";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Natural Resources ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL35";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=5";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Oil and Gas ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL36";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=23";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Online Mapping/Portals ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL37";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=25";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Real Estate ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL38";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/47/Industry+Applications?industry_id=13";
oLink.onmouseover = function () { LMPopUp('L23', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Telecom/Utilities ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L39";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL40";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/16/About+Us";
oLink.onmouseover = function () { moveLayerX('L40') ; moveLayerY('L40') ; LMPopUp('L40', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Company Overview ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL44";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/82/Content+Collection+Systems";
oLink.onmouseover = function () { moveLayerX('L44') ; moveLayerY('L44') ; LMPopUp('L44', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Content Collection Systems ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL49";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/222/Partners";
oLink.onmouseover = function () { moveLayerX('L49') ; moveLayerY('L49') ; LMPopUp('L49', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Partners ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL53";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://media.digitalglobe.com";
oLink.onmouseover = function () { LMPopUp('L39', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("News Room ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL54";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://investor.digitalglobe.com";
oLink.onmouseover = function () { LMPopUp('L39', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Investor Relations ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL55";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/206/Tradeshows+and+Conferences";
oLink.onmouseover = function () { LMPopUp('L39', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Tradeshows and Conferences ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL56";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/111/Web+Events+and+Seminars";
oLink.onmouseover = function () { moveLayerX('L56') ; moveLayerY('L56') ; LMPopUp('L56', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Web Events and Seminars ");
oLink.appendChild(oText);

}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL60";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/19/Careers";
oLink.onmouseover = function () { LMPopUp('L39', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Careers ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL61";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/21/Contact";
oLink.onmouseover = function () { moveLayerX('L61') ; moveLayerY('L61') ; LMPopUp('L61', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Contact ");
oLink.appendChild(oText);

}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L40";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL41";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/112/History";
oLink.onmouseover = function () { LMPopUp('L40', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("History ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL42";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/113/Locations";
oLink.onmouseover = function () { LMPopUp('L40', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Locations ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL43";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/114/Management+Team";
oLink.onmouseover = function () { LMPopUp('L40', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Management Team ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L44";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL45";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/85/QuickBird";
oLink.onmouseover = function () { LMPopUp('L44', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("QuickBird ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL46";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/86/WorldView-1";
oLink.onmouseover = function () { LMPopUp('L44', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("WorldView-1 ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL47";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/88/WorldView-2";
oLink.onmouseover = function () { LMPopUp('L44', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("WorldView-2 ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL48";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/104/Aerial";
oLink.onmouseover = function () { LMPopUp('L44', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Aerial ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L49";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL50";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/212/Corporate+Strategic+Alliances";
oLink.onmouseover = function () { LMPopUp('L49', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Corporate Strategic Alliances ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL51";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/211/OEM+Manufacturers";
oLink.onmouseover = function () { LMPopUp('L49', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("OEM Manufacturers ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL52";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/23/Global+Resellers";
oLink.onmouseover = function () { LMPopUp('L49', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Global Resellers ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L56";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL57";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/213/Live+Web+Events";
oLink.onmouseover = function () { LMPopUp('L56', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Live Web Events ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL58";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/207/On-Demand+Web+Events";
oLink.onmouseover = function () { LMPopUp('L56', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("On-Demand Web Events ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL59";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/209/Seminars";
oLink.onmouseover = function () { LMPopUp('L56', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Seminars ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L61";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL62";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/98/Questions%3F";
oLink.onmouseover = function () { LMPopUp('L61', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Questions? ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L63";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL64";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/22/How+to+Purchase";
oLink.onmouseover = function () { LMPopUp('L63', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("How to Purchase ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL65";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/28/Global+Reseller+Locator";
oLink.onmouseover = function () { LMPopUp('L63', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Global Reseller Locator ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL66";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/24/Purchase+Online";
oLink.onmouseover = function () { LMPopUp('L63', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Purchase Online ");
oLink.appendChild(oText);
}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L67";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL68";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/15/Support";
oLink.onmouseover = function () { LMPopUp('L67', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Support Overview ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL69";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/130/Documents+%26+Tutorials";
oLink.onmouseover = function () { LMPopUp('L67', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Support Documents & Tutorials ");
oLink.appendChild(oText);
}
{
var oDiv = document.createElement("DIV");
oDiv.id = "refL70";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/122/Policies";
oLink.onmouseover = function () { moveLayerX('L70') ; moveLayerY('L70') ; LMPopUp('L70', false); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Policies ");
oLink.appendChild(oText);

}
}
{
var oSubmenu = document.createElement("DIV");
oSubmenu.id = "L70";
oSubmenu.className = "submenu";
oSubmenu.onmouseover = clearLMTO;
oSubmenu.onmouseout = setLMTO;
oBody.appendChild(oSubmenu);

var oTbl = document.createElement("TABLE");
oTbl.setAttribute("border","0");
oTbl.setAttribute("cellSpacing","0");
oTbl.setAttribute("cellPadding","0");
oSubmenu.appendChild(oTbl);

var oRow = oTbl.insertRow(-1);
var oCell = oRow.insertCell(-1);
oCell.nowrap = true;

var oFrame = document.createElement("DIV");
oFrame.className = "subframe";
oCell.appendChild(oFrame);

{
var oDiv = document.createElement("DIV");
oDiv.id = "refL71";
oDiv.className = "dhtmlitem";
oFrame.appendChild(oDiv);

var oLink = document.createElement("A");
oLink.href = "http://www.digitalglobe.com/index.php/128/Usage";
oLink.onmouseover = function () { LMPopUp('L70', true); };
oLink.title = "";
oLink.target = "_self";
oDiv.appendChild(oLink);

var oText = document.createTextNode("Usage ");
oLink.appendChild(oText);
}
}


loaded = 1;

// end of menu footer - PHP Layers Menu 3.2.0-rc (C) 2001-2004 Marco Pratesi - http://www.marcopratesi.it/
}

