function init2() {
	setForesightDropDown();
	this.currentPage = "";
}

function setForesightDropDown() {
	init2.currentPage = "";

	mainForesightWrapper = document.getElementById("foresightMenuLink");
	mainForesightArr = mainForesightWrapper.getElementsByTagName("A");

	mainForesightArr[0].onmouseover = function() {
		buildForesightDropDown(this);
	}
}

function buildForesightDropDown(obj) {

	foresightMenuObj = document.getElementById("foresightMenu");
	foresightMenuObj.className = "showForesight";


	foresightMenuMaskObj = document.getElementById("foresightMenuMask");
	foresightMenuMaskObj.className = "foresightMenuMask";
	foresightMenuMaskObj.onmouseover = function() {
		hideForesightMenu();
	}

	foresightMenuMaskObj2 = document.getElementById("foresightMenuMask2");
	foresightMenuMaskObj2.className = "foresightMenuMask2";
	foresightMenuMaskObj2.onmouseover = function() {
		hideForesightMenu();
	}

	foresightMenuMaskObj3 = document.getElementById("foresightMenuMask3");
	foresightMenuMaskObj3.className = "foresightMenuMask3";
	foresightMenuMaskObj3.onmouseover = function() {
		hideForesightMenu();
	}

	foresightMenuMaskObj4 = document.getElementById("foresightMenuMask4");
	foresightMenuMaskObj4.className = "foresightMenuMask4";
	foresightMenuMaskObj4.onmouseover = function() {
		hideForesightMenu();
	}
}

function hideForesightMenu() {
	foresightMenuObj = document.getElementById("foresightMenu");
	foresightMenuObj.className = "hidden";

	foresightMenuMaskObj = document.getElementById("foresightMenuMask");
	foresightMenuMaskObj.className = "hidden";
	foresightMenuMaskObj2 = document.getElementById("foresightMenuMask2");
	foresightMenuMaskObj2.className = "hidden";
	foresightMenuMaskObj3 = document.getElementById("foresightMenuMask3");
	foresightMenuMaskObj3.className = "hidden";
	foresightMenuMaskObj4 = document.getElementById("foresightMenuMask4");
	foresightMenuMaskObj4.className = "hidden";
}



document.write('<div id="foresightMenu" class="hidden">');
document.write('	<table id="foresightMenuTable" cellpadding="3" cellspacing="0" border="0">');
document.write('	<tr><td style="padding-top:10px;"><a href="/foresight/foresight.cfm?id=all" class="foresightlob">All articles<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=am" class="foresightlob">Asset Management<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=ai" class="foresightlob">Alternative Investment Services<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=as" class="foresightlob">Asset Servicing<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=bd" class="foresightlob">Broker-Dealer &amp; Advisor Services<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=ct" class="foresightlob">Corporate Trust<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=dr" class="foresightlob">Depositary Receipts<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=gm" class="foresightlob">Global Markets<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=ss" class="foresightlob">Shareowner Services<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=ts" class="foresightlob">Treasury Services<\/a><\/td><\/tr>');
document.write('	<tr><td><a href="/foresight/foresight.cfm?id=wm" class="foresightlob">Wealth Management<\/a><\/td><\/tr>');
document.write('	<tr><td style="padding-bottom:10px;"><a href="/foresight/foresight.cfm?id=co" class="foresightlob">Corporate<\/a><\/td><\/tr>');
document.write('	<\/table>');
document.write('<\/div>');
document.write('<div id="foresightMenuMask" class="hidden">');
document.write('<\/div>');
document.write('<div id="foresightMenuMask2" class="hidden">');
document.write('<\/div>');
document.write('<div id="foresightMenuMask3" class="hidden">');
document.write('<\/div>');
document.write('<div id="foresightMenuMask4" class="hidden">');
document.write('<\/div>');