
		var last = 0;

		if (document.images) {
// preload images start
image1on = new Image();
image1on.src = "/templates/html/d_1_de_imageleft_foto_on.jpg";
image1off = new Image();
image1off.src = "/templates/html/d_1_de_imageleft_foto_off.jpg";
image1act = new Image();
image1act.src = "/templates/html/d_1_de_imageleft_foto_act.jpg";
image26on = new Image();
image26on.src = "/templates/html/d_26_de_imageleft_foto_on.gif";
image26off = new Image();
image26off.src = "/templates/html/d_26_de_imageleft_foto_off.gif";
image26act = new Image();
image26act.src = "/templates/html/d_26_de_imageleft_foto_act.gif";
image6on = new Image();
image6on.src = "/templates/html/d_6_de_imageleft_foto_on.gif";
image6off = new Image();
image6off.src = "/templates/html/d_6_de_imageleft_foto_off.gif";
image6act = new Image();
image6act.src = "/templates/html/d_6_de_imageleft_foto_act.gif";
// preload images end
}


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

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

		function stay_navigate(imgName, imgNum) {
// stay images start
image1on.src = "/templates/html/d_1_de_imageleft_foto_on.jpg";
image1off.src = "/templates/html/d_1_de_imageleft_foto_off.jpg";
if (imgNum==1){
image1on.src = "/templates/html/d_1_de_imageleft_foto_act.jpg";
image1off.src = "/templates/html/d_1_de_imageleft_foto_act.jpg";
}
image26on.src = "/templates/html/d_26_de_imageleft_foto_on.gif";
image26off.src = "/templates/html/d_26_de_imageleft_foto_off.gif";
if (imgNum==26){
image26on.src = "/templates/html/d_26_de_imageleft_foto_act.gif";
image26off.src = "/templates/html/d_26_de_imageleft_foto_act.gif";
}
image6on.src = "/templates/html/d_6_de_imageleft_foto_on.gif";
image6off.src = "/templates/html/d_6_de_imageleft_foto_off.gif";
if (imgNum==6){
image6on.src = "/templates/html/d_6_de_imageleft_foto_act.gif";
image6off.src = "/templates/html/d_6_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;
		}


