function dijcsHeight() {
	Prototype.Browser.IE6=Prototype.Browser.IE &&
	parseInt(navigator.userAgent.substring
	(navigator.userAgent.indexOf("MSIE")+5))==6;
	var dijcs = $$('.dijcsomag_class');
	dijcs.each(function(el) {
		var height = el.getHeight() - 10;
		var pheight = $(el.parentNode.parentNode.parentNode).getHeight() - 39;
			if (Prototype.Browser.IE6) {
				el.parentNode.style.backgroundPosition = "10px " + height + "px";
				el.parentNode.style.height = pheight + "px";
			} else {
				el.parentNode.style.backgroundPosition = "10px " + height + "px";
			}
	});

}

Event.observe(window, "load", dijcsHeight);