	var BTexts = new Array(4);
	var onClick = -1;
	var prevNode = null;
	
	BTexts = new Array(7);
	BTexts[0] = "Management of Sputnik Funds with over $1 billion in commitments. Proprietary investments.";
	BTexts[1] = "Outstanding experience in operational management. Always hands-on operational control, strategy development, HR, legal, finance.";
	BTexts[2] = "Large number of investments in diverse industries. Thorough knowledge of industries, trends, opportunities.";
	BTexts[3] = "All necessary infrastructure including supporting staff and professionals developed over the 13 years of work in Russia.";
	BTexts[4] = "Recognized professionals in execution and management of transactions. Synergy of Private Equity – Advisory – using best practice worldwide.";
	BTexts[5] = "Broad proprietary network of contacts and reputation among the Russian business elite. Outstanding professional reputation in the market.";

	function ShowText(index, isClick){
		getElmByID('BottomText').innerHTML = BTexts[index];
		
		if( isClick ) onClick = index;
		
		if( onClick != -1 ){
			if( prevNode != null ){
				getElmByID('item'+prevNode).className = '';
			}
		}
		getElmByID('item'+index).className = "CapaSel";
		prevNode = index;
	} // ShowText();
	
	function HideText(){
		if( onClick == -1 ){
			getElmByID('BottomText').innerHTML = '';
			if( prevNode != null ){
				getElmByID('item'+prevNode).className = "";
			}
		}
	} // HideText();