<!-- Hide from old browsers
			
		var imageRoot = getRootDir() + '/img_en';
		
		abouton = new Image();
		abouton.src = imageRoot + "/nav2_02.gif";
		aboutoff = new Image();
		aboutoff.src = imageRoot + "/nav_02.gif";

		officeson = new Image();
		officeson.src = imageRoot + "/nav2_03.gif";
		officesoff = new Image();
		officesoff.src = imageRoot + "/nav_03.gif";

		practiceson = new Image();
		practiceson.src = imageRoot + "/nav2_04.gif";
		practicesoff = new Image();
		practicesoff.src = imageRoot + "/nav_04.gif";

		lawyerson = new Image();
		lawyerson.src = imageRoot + "/nav2_05.gif";
		lawyersoff = new Image();
		lawyersoff.src = imageRoot + "/nav_05.gif";

		pubson = new Image();
		pubson.src = imageRoot + "/nav2_06.gif";
		pubsoff = new Image();
		pubsoff.src = imageRoot + "/nav_06.gif";

		newseventson = new Image();
		newseventson.src = imageRoot + "/nav2_07.gif";
		newseventsoff = new Image();
		newseventsoff.src = imageRoot + "/nav_07.gif";

		careerson = new Image();
		careerson.src = imageRoot + "/nav2_08.gif";
		careersoff = new Image();
		careersoff.src = imageRoot + "/nav_08.gif";

		pipe1on = new Image();
		pipe1on.src = imageRoot + "/lo_pipe.gif";
		pipe1off = new Image();
		pipe1off.src = imageRoot + "/l_pipe.gif";

		pipe2on = new Image();
		pipe2on.src = imageRoot + "/lo_pipe.gif";
		pipe2off = new Image();
		pipe2off.src = imageRoot + "/l_pipe.gif";

		pipe3on = new Image();
		pipe3on.src = imageRoot + "/lo_pipe.gif";
		pipe3off = new Image();
		pipe3off.src = imageRoot + "/l_pipe.gif";

		pipe4on = new Image();
		pipe4on.src = imageRoot + "/lo_pipe.gif";
		pipe4off = new Image();
		pipe4off.src = imageRoot + "/l_pipe.gif";

		pipe5on = new Image();
		pipe5on.src = imageRoot + "/lo_pipe.gif";
		pipe5off = new Image();
		pipe5off.src = imageRoot + "/l_pipe.gif";

		pipe6on = new Image();
		pipe6on.src = imageRoot + "/lo_pipe.gif";
		pipe6off = new Image();
		pipe6off.src = imageRoot + "/l_pipe.gif";

		pipe7on = new Image();
		pipe7on.src = imageRoot + "/lo_pipe.gif";
		pipe7off = new Image();
		pipe7off.src = imageRoot + "/l_pipe.gif";

		pipe8on = new Image();
		pipe8on.src = imageRoot + "/lo_pipe.gif";
		pipe8off = new Image();
		pipe8off.src = imageRoot + "/l_pipe.gif";

		englishon = new Image();
		englishon.src = imageRoot + "/lo_english.gif";
		englishoff = new Image();
		englishoff.src = imageRoot + "/l_english.gif";

		germanon = new Image();
		germanon.src = imageRoot + "/lo_german.gif";
		germanoff = new Image();
		germanoff.src = imageRoot + "/l_german.gif";

		japanon = new Image();
		japanon.src = imageRoot + "/lo_japan.gif";
		japanoff = new Image();
		japanoff.src = imageRoot + "/l_japan.gif";

// FUNCTIONS
function lo(imgName)
 {
	imgon = eval(imgName + "on.src");
	document [imgName].src = imgon;
}
function l(imgName)
 {
	imgoff = eval(imgName + "off.src");
	document [imgName].src = imgoff;
}
// END HIDING FROM OLDER BROWSERS -->


function getRootDir(URL)
{
	var strURL = (arguments[0] == null) ? document.URLUnencoded : URL;
	
	var nServer = strURL.indexOf("//") + 2;
	var nFileStart = strURL.length - 1;

	while ((nServer < strURL.length) && (strURL.substr(nServer, 1) != "/"))
			nServer++;

	while ((nFileStart >= nServer) && (strURL.substr(nFileStart, 1) != "/"))
		nFileStart--;

	if (nFileStart > nServer)
	{
		var nRoot = nServer + 1;

		while ((nRoot < strURL.length) && (strURL.substr(nRoot, 1) != "/"))
			nRoot++;

		return strURL.substring(0,  nRoot );
	}
	else
		return "";
}







