function initHomeTeaser() {	var header = document.getElementById('header-graphic-start');	if (header) {		var box = findFirstSub(header, 'DIV', 'textpic');				while (box) {						// get links			var middle = getDeepSub(box, 'DIV', 'middle');			if (middle && hasDeepSub(middle, 'A', null)) {//				alert(a.getAttribute('HREF'));//				alert(a);				box.style.cursor = 'pointer';				box.onmouseover = function () {					addClass(this, 'textpicHover');				}				box.onmouseout = function () {					removeClass(this, 'textpicHover');				}				box.onclick = function() {					var middle = getDeepSub(this, 'DIV', 'middle');					if (middle) {						var a = getDeepSub(middle, 'A', null);						if (a) {							var link = a.getAttribute('href');							if (link) {								document.location.href=link;								return false;							}						}					}				}			}						box = findNextSub(box, 'DIV', 'textpic');		}			}}