// menu.js

// aansturen menus + preloader

var current='foto001'
if(document.images) { // Active Images

	foto001down=new Image();
	foto001down.src="images/foto001down.jpg";

	foto001up=new Image();
	foto001up.src="images/foto001up.jpg";

	foto002down=new Image();
	foto002down.src="images/foto002down.jpg";

	foto002up=new Image();
	foto002up.src="images/foto002up.jpg";

	foto003down=new Image();
	foto003down.src="images/foto003down.jpg";

	foto003up=new Image();
	foto003up.src="images/foto003up.jpg";

	foto004down=new Image();
	foto004down.src="images/foto004down.jpg";

	foto004up=new Image();
	foto004up.src="images/foto004up.jpg";

	foto005down=new Image();
	foto005down.src="images/foto005down.jpg";

	foto005up=new Image();
	foto005up.src="images/foto005up.jpg";

	foto006down=new Image();
	foto006down.src="images/foto006down.jpg";

	foto006up=new Image();
	foto006up.src="images/foto006up.jpg";

	foto007down=new Image();
	foto007down.src="images/foto007down.jpg";

	foto007up=new Image();
	foto007up.src="images/foto007up.jpg";

	foto008down=new Image();
	foto008down.src="images/foto008down.jpg";

	foto008up=new Image();
	foto008up.src="images/foto008up.jpg";


	}

// function to activate images

function imgOn(imgName){
	if (document.images){
		document[imgName].src=eval(imgName + "up.src");
	}
}

function imgOff(imgName){
	if (document.images){
		document[imgName].src=eval(imgName + "down.src");
	}
}



