	if (document.images) {
		
		if(!rootPath) var rootPath = '';
		
		var menu01on = new Image()
		menu01on.src = rootPath + "images/buttons/on/menu_01.gif"
		var menu01off = new Image() 
		menu01off.src = rootPath + "images/buttons/off/menu_01.gif"

		var menu02on = new Image()
		menu02on.src = rootPath + "images/buttons/on/menu_02.gif"
		var menu02off = new Image() 
		menu02off.src = rootPath + "images/buttons/off/menu_02.gif"

		var menu03on = new Image()
		menu03on.src = rootPath + "images/buttons/on/menu_03.gif"
		var menu03off = new Image() 
		menu03off.src = rootPath + "images/buttons/off/menu_03.gif"

		var menu04on = new Image()
		menu04on.src = rootPath + "images/buttons/on/menu_04.gif"
		var menu04off = new Image() 
		menu04off.src = rootPath + "images/buttons/off/menu_04.gif"
		
		var menu05on = new Image()
		menu05on.src = rootPath + "images/buttons/on/menu_05.gif"
		var menu05off = new Image() 
		menu05off.src = rootPath + "images/buttons/off/menu_05.gif"

		var langeon = new Image()
		langeon.src = rootPath + "images/buttons/on/lang_e.gif"
		var langeoff = new Image() 
		langeoff.src = rootPath + "images/buttons/off/lang_e.gif"


	}

function inact(imgName) {
	if (document.images)
    document[imgName].src = eval(imgName + 'off.src');
}

function act(imgName) {
  if (document.images)
    document[imgName].src = eval(imgName + 'on.src');
}

