<!-- Hide JavaScript from obsolete browsers 
	var isIMG = document.images;   //See if the browser supports the images object
	    if (isIMG) { 
	 	about_uson = new Image(96,31);
		about_uson.src = "/images/nav_left_about_us_on.gif";
	 	about_usoff = new Image(96,31);
		about_usoff.src = "/images/nav_left_about_us_off.gif";
	 	investmenton = new Image(96,31);
		investmenton.src = "/images/nav_left_investment_on.gif";
	 	investmentoff = new Image(96,31);
		investmentoff.src = "/images/nav_left_investment_off.gif";
	 	portfolioon = new Image(96,31);
		portfolioon.src = "/images/nav_left_portfolio_on.gif";
	 	portfoliooff = new Image(96,31);
		portfoliooff.src = "/images/nav_left_portfolio_off.gif";
	 	teamon = new Image(96,31);
		teamon.src = "/images/nav_left_team_on.gif";
	 	teamoff = new Image(96,31);
		teamoff.src = "/images/nav_left_team_off.gif";
	 	newson = new Image(96,32);
		newson.src = "/images/nav_left_news_on.gif";
	 	newsoff = new Image(96,32);
		newsoff.src = "/images/nav_left_news_off.gif";
		financialon = new Image(96,31);
		financialon.src = "/images/nav_left_financial_on.gif";
	 	financialoff = new Image(96,31);
		financialoff.src = "/images/nav_left_financial_off.gif";
	 	contact_uson = new Image(96,31);
		contact_uson.src = "/images/nav_left_contact_us_on.gif";
	 	contact_usoff = new Image(96,31);
		contact_usoff.src = "/images/nav_left_contact_us_off.gif";
		homeon = new Image(96,31);
		homeon.src = "/images/nav_left_home_on.gif";
	 	homeoff = new Image(96,31);
		homeoff.src = "/images/nav_left_home_off.gif";													
	}
	function rollon(imgName) {
	        if (isIMG) {
	        imgOn = eval(imgName + "on.src");
	        document[imgName].src = imgOn;
	        }
	}
	function rolloff(imgName) {
	        if (isIMG) {
	        document[imgName].src = eval(imgName + "off.src");
	        }
	}
	// -->