
if (document.images) {

	section02off = new Image (0,0);
	section03off = new Image (0,0);
	section07off = new Image (0,0);
	section09off = new Image (0,0);


	section02on = new Image (0,0);
	section03on = new Image (0,0);
	section07on = new Image (0,0);
	section09on = new Image (0,0);


	section02off.src = "../images/wedding/menuoff_02.gif";
	section03off.src = "../images/wedding/menuoff_03.gif";
	section07off.src = "../images/wedding/menuoff_07.gif";

	section09off.src = "../images/wedding/menuoff_09.gif";


	section02on.src = "../images/wedding/menuon_02.gif";
	section03on.src = "../images/wedding/menuon_03.gif";
	section07on.src = "../images/wedding/menuon_07.gif";

	section09on.src = "../images/wedding/menuon_09.gif";
}

function act(imgName) {

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

}

function inact(imgName) {

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