	var TTexts = new Array(4);
	var BTexts = new Array(4);
	var onClick = -1;
	var prevNode = null;
	
	TTexts[0] = 'Managed regional operations of the largest international IB present in the market';
	BTexts[0] = 'Headed by Boris Jordan, CSFB’s Moscow office captured 60% of Russia’s securities market, channeling more than $1.3 billion of Western investment during 1992-95';

	TTexts[1] = 'Founded and ran Russia’s first independent Western-style investment/merchant bank';
	BTexts[1] = '<img src="/html/decor/company/1995-1998.gif" width="425" height="67" alt="The team successfully built a premier independent investment bank serving Russia and CIS, with a large merchant banking arm.•  Investment banking transactions valued at over $3.6 billion; •  Established the Sputnik Funds, the largest group of private equity funds in Russia with over $1 bln raised">';

	TTexts[2] = 'The Sputnik Group became independent and focused asset manager, with advisory capabilities';
	BTexts[2] = '<img src="/html/decor/company/1998-2004.gif" width="445" height="80" alt="Private Equity: • Attracted leading Western institutional investors to the Russian market; • Exited several successful investments such as Sidanco, Kievstar GSM, Europa Plus, NLMK and a number of private equity situations; Advisory Services: • lead management and financial turn-arounds at distressed companies, such as NTV, Sidanco; •  provided discrete M&A advice to leading Russian groups in the natural resources and industrial sectors">';

	TTexts[3] = 'Focus Private Equity / Advisory';
	BTexts[3] = '<img src="/html/decor/company/2005-and-beyond.gif" width="441" height="62" alt="2005: • Major expansions of Renaissance Insurance and Afisha; • Merger of Redbus plc with Telecity; • IPO of Thielert AG; Beyond: Continue to seek private equity, management and advisory opportunities that exploit theunique experience and history of the Group\'s core team of professionals">';

	function ShowText(index, isClick){
		getElmByID('TopText').innerHTML = TTexts[index];
		getElmByID('BottomText').innerHTML = BTexts[index];
		
		if( isClick ) onClick = index;
		
		if( onClick != -1 ){
			if( prevNode != null ){
				getElmByID('item'+prevNode).className = "historyNav";
			}
		}
		getElmByID('item'+index).className = "historyNavSel";
		prevNode = index;
	} // ShowText();
	
	function HideText(){
		if( onClick == -1 ){
			getElmByID('TopText').innerHTML = '';
			getElmByID('BottomText').innerHTML = '';
			if( prevNode != null ){
				getElmByID('item'+prevNode).className = "historyNav";
			}
		}
	} // HideText();