<!--
function zoom(id,hx,hy){
	bildAll = document.getElementsByTagName("img");
	b = "b"+id;
	g = hx;
	k = hy;
	a = new Array();
	r = 0;
	h = document.getElementsByTagName("img")[b].height;
	for(i = 0; i < bildAll.length; i++){
		bildChek = document.getElementsByTagName("img")[i].name;
		if(bildChek != ""){
			a[r] = bildChek;
			r ++;
		}
	}
	a.splice(id-1,1);
	if(h == hx){
		window.setTimeout("zoomSingle(b,g,k);", 1);
	}
	if(h < hx){
		window.setTimeout("zoomOut(b,g,k);", 1);
	}
}
function zoomSingle(id,hx,hy){
	b = id;
	g = hx;
	k = hy;
	h = document.getElementsByTagName("img")[id].height;
	//confirm(h+" "+id);
	if(h > hy){
		h -= 10;
		document.getElementsByTagName("img")[id].height	= h;
		window.setTimeout("zoomSingle(b,g,k);", 1);
	}
}
function zoomOut(id,hx,hy){
	b = id;
	g = hx;
	k = hy;
	for(i = 0; i < a.length; i++){
		r = a[i]
		h = document.getElementsByTagName("img")[r].height;
		if(h > hy){
			h -=10;
			document.getElementsByTagName("img")[r].height = h;
			window.setTimeout("zoomOut(b,g,k);", 1);
		}
	}
	window.setTimeout("zoomIn(b,g,k);", 1);
}
function zoomIn(id,hx,hy){
	b = id;
	g = hx;
	k = hy;
	h = document.getElementsByTagName("img")[id].height;
	if(h < hx){
		h += 10;
		document.getElementsByTagName("img")[id].height	= h;
		window.setTimeout("zoomIn(b,g,k);", 1);
	}
}
//-->