
img1on = new Image();	img1on.src = "buttons/menu_down.png";
img2on = new Image();	img2on.src = "buttons/recipes_down.png";
img3on = new Image();	img3on.src = "buttons/cam_down.png";
img4on = new Image();	img4on.src = "buttons/reservations_down.png";
img5on = new Image();	img5on.src = "buttons/photos_down.png";
img6on = new Image();	img6on.src = "buttons/staff_down.png";
img7on = new Image();	img7on.src = "buttons/location_down.png";
img8on = new Image();	img8on.src = "buttons/newsletter_down.png";
img9on = new Image();	img9on.src = "buttons/home_down.png";

img1off = new Image();	img1off.src = "buttons/menu_up.png";
img2off = new Image();	img2off.src = "buttons/recipes_up.png";
img3off = new Image();	img3off.src = "buttons/cam_up.png";
img4off = new Image();	img4off.src = "buttons/reservations_up.png";
img5off = new Image();	img5off.src = "buttons/photos_up.png";
img6off = new Image();	img6off.src = "buttons/staff_up.png";
img7off = new Image();	img7off.src = "buttons/location_up.png";
img8off = new Image();	img8off.src = "buttons/newsletter_up.png";
img9off = new Image();	img9off.src = "buttons/home_up.png";

function imgOn(w) {
	document.images[w].src = eval(w + "on.src");
	}
function imgOff(w) {
	document.images[w].src = eval(w + "off.src");
	}