	if (document.images) {
		
		if(!rootPath) var rootPath = 'wp-content/themes/kindred/';
		
		var menu01on = new Image()
		menu01on.src = rootPath + "images/menus/on/menu01.jpg"
		var menu01off = new Image() 
		menu01off.src = rootPath + "images/menus/off/menu01.jpg"

		var menu02on = new Image()
		menu02on.src = rootPath + "images/menus/on/menu02.jpg"
		var menu02off = new Image() 
		menu02off.src = rootPath + "images/menus/off/menu02.jpg"

		var menu03on = new Image()
		menu03on.src = rootPath + "images/menus/on/menu03.jpg"
		var menu03off = new Image() 
		menu03off.src = rootPath + "images/menus/off/menu03.jpg"

		var menu04on = new Image()
		menu04on.src = rootPath + "images/menus/on/menu04.jpg"
		var menu04off = new Image() 
		menu04off.src = rootPath + "images/menus/off/menu04.jpg"
		
		var menu05on = new Image()
		menu05on.src = rootPath + "images/menus/on/menu05.jpg"
		var menu05off = new Image() 
		menu05off.src = rootPath + "images/menus/off/menu05.jpg"
		
		var menu06on = new Image()
		menu06on.src = rootPath + "images/menus/on/menu06.jpg"
		var menu06off = new Image() 
		menu06off.src = rootPath + "images/menus/off/menu06.jpg"

		var menu07on = new Image()
		menu07on.src = rootPath + "images/menus/on/menu07.jpg"
		var menu07off = new Image() 
		menu07off.src = rootPath + "images/menus/off/menu07.jpg"

		var menu08on = new Image()
		menu08on.src = rootPath + "images/menus/on/menu08.jpg"
		var menu08off = new Image() 
		menu08off.src = rootPath + "images/menus/off/menu08.jpg"
		
	}

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');
}

