var thinkingtext = new Array(5)
thinkingtext[0]="Mellon's proprietary Global Market Research helps clients navigate the complex issues associated with depositary risk analysis and trading in global markets.";
thinkingtext[1]="Read the latest issue of <i>Analytical Insights</i> from Russell/Mellon for updates on performance measurement and analytics.";
thinkingtext[2]="Learn how current conditions are affecting the markets in Mellon Chief Economist Richard Hoey's <i>Economic Update</i>.";
thinkingtext[3]="Interested in Canadian market conditions? Read CIBC Mellon's <i>Trade Talk</i> to learn more.";
thinkingtext[4]="Learn how Eagle PACE&#174; and Eagle STAR&#153; sped up processing for the Russell 3000&reg; Index.";

var thinkingtextlink = new Array(5)
thinkingtextlink[0]="/assetservicing/currentthinking/globalmarketresearch.html";
thinkingtextlink[1]="/assetservicing/currentthinking/newsletters.html";
thinkingtextlink[2]="/news/economicupdates.html";
thinkingtextlink[3]="/assetservicing/currentthinking/newsletters.html";
thinkingtextlink[4]="/assetservicing/currentthinking/pdf/rm.pdf";

var arrayindex2 = Math.floor(Math.random()*thinkingtext.length);
myRandomObj2 = new Object;  
myRandomObj2.thethinkingtext = thinkingtext[arrayindex2];  
myRandomObj2.thethinkingtextlink = thinkingtextlink[arrayindex2];  

function getthinkingtext(){
	document.writeln("<a href='" + myRandomObj2.thethinkingtextlink + "'>" + myRandomObj2.thethinkingtext + "</a>");
}
