<!--
if (document.images) {

	m1on = new Image(); m1on.src = "images/nyito3_honlapkeszites_on.jpg";
	m2on = new Image(); m2on.src = "images/nyito3_webaruhaz_on.jpg";
	m3on = new Image(); m3on.src = "images/nyito3_kiadvanytervezes_on.jpg";
	m4on = new Image(); m4on.src = "images/nyito3_egyeb_on.jpg";

	m1off = new Image(); m1off.src = "images/nyito3_honlapkeszites_off.jpg";
	m2off = new Image(); m2off.src = "images/nyito3_webaruhaz_off.jpg";
	m3off = new Image(); m3off.src = "images/nyito3_kiadvanytervezes_off.jpg";
	m4off = new Image(); m4off.src = "images/nyito3_egyeb_off.jpg";


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

	function changeOff(imageID) {
		if (document.images) {
			document.images[imageID].src = imgOff;
		}
	}
//-->
