
		var last = 0;

		if (document.images) {
// preload images start
image22on = new Image();
image22on.src = "/templates/html/d_22_de_imageleft_foto_on.gif";
image22off = new Image();
image22off.src = "/templates/html/d_22_de_imageleft_foto_off.gif";
image22act = new Image();
image22act.src = "/templates/html/d_22_de_imageleft_foto_act.gif";
// preload images end
}


		function act_right_02(imgName, imgNum) {
			document[imgName].src = eval(imgName + 'on.src');	
		}

		function inact_right_02(imgName, imgNum) {
			document[imgName].src = eval(imgName + 'off.src');
		}

		function stay_right_02(imgName, imgNum) {
// stay images start
image22on.src = "/templates/html/d_22_de_imageleft_foto_on.gif";
image22off.src = "/templates/html/d_22_de_imageleft_foto_off.gif";
if (imgNum==22){
image22on.src = "/templates/html/d_22_de_imageleft_foto_act.gif";
image22off.src = "/templates/html/d_22_de_imageleft_foto_act.gif";
}
// stay images end

		document[imgName].src = eval(imgName + 'act.src');

		if (last>0){
			temp='image' + last;
				document[temp].src = eval(temp + 'off.src');
			}
			last=imgNum;
		}


