<!--


function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = 'Northern Trust has the largest U.S. private banking reach, with a network of 85 offices in 18 states.'
text[number++] = 'Northern Trust serves clients in approximately 40 countries, with a network reaching 95 markets in 90 countries.'
text[number++] = 'Northern Trust has international offices in 13 locations in North America, Europe and the Asia-Pacific region. '
text[number++] = 'Northern Trust built and maintains one million square feet of customized facilities devoted entirely to its operations and technology enterprise.'
text[number++] = 'Northern Trust developed leading-edge services to address the Congress enacted Employees Retirement and Income Security Act (1974), which today is a thriving business that administers more than $1 trillion in assets.'
text[number++] = 'Northern Trust was the first Illinois State-chartered bank to expand beyond the U.S., to London (1969).'
text[number++] = 'As of December 31, 2009, Northern Trust has $82 billion in banking assets under management.'
text[number++] = 'As of December 31, 2009, Northern Trust has $3.7 trillion assets under custody.'
text[number++] = 'As of December 31, 2009, Northern Trust has $627.2 billion assets under management.'
text[number++] = 'Northern Trust offers a wide variety of services to personal clients, including: Trust & Fiduciary, Investments, Private and Business Banking, Financial Planning, Retirement and Family Office.'
text[number++] = 'Northern Trust offers a wide variety of services to institutional clients, including: Asset Management, Custody Services, Risk and Analytics, Global Fund Services, Planned Giving Services, Benefit Payment Services, Treasury Management, Correspondent Services and Small Business Services.'


increment = Math.floor(Math.random() * number);

document.write(text[increment]);

//-->
