var img = new Array();/* -------------------------------- * Bilder schnell laden * --------------------------------*/function preload(path, list){	var bilder = list.split(",");	for ( i = 0; i < bilder.length; i++ ) {		//alert(bilder.length + ": " + i + ": " + path + bilder[i]);		img[i] = new Image();		img[i].src = path + bilder[i];	}}/* ------------------------------ * Bilder der Navigation tauschen * ------------------------------*/var temp = "";function m_over_logo(name, art){	var src = "";	switch (art) {		case "muster": src = "../../support/images/n10muster.jpg"; break;		case "weiss":  src = "../../support/images/n10weiss.jpg";  break;		case "gelb":   src = "../../support/images/n10gelb.jpg";   break;		default: alert("m_over_logo(): Parameter 'art' = " + art);   break;	}			for (i = 0; i < document.images.length; i++) {		if (document.images[i].name == name) {			temp = document.images[i].src;			document.images[i].src = src;			break;		}	}}function m_over(name){	var src = "";		switch (name) {		case "geschichte":  src = "../support/images/n02.jpg"; break;		case "betrieb":     src = "../support/images/n04.jpg"; break;		case "holzauswahl": src = "../support/images/n06.jpg"; break;		case "produktion":  src = "../support/images/n08.jpg"; break;		case "produkte":    src = "../support/images/n11.jpg"; break;		case "information": src = "../support/images/n13.jpg"; break;		case "service":     src = "../support/images/n15.jpg"; break;		case "standort":    src = "../support/images/n17.jpg"; break;		default: alert("m_over(): Parameter 'name' = " + name);  break;	}		for (i = 0; i < document.images.length; i++) {		if (document.images[i].name == name) {			temp = document.images[i].src;			document.images[i].src = src;			break;		}	}}function m_out(name){		for (i = 0; i < document.images.length; i++) {		if (document.images[i].name == name) {			document.images[i].src = temp;			break;		}	}}function getObj(name) {	if (document.getElementById) {		this.obj = document.getElementById(name);		this.style = document.getElementById(name).style;	}	else if (document.all) {		this.obj = document.all[name];		this.style = document.all[name].style;	}	else if (document.layers) {		this.obj = document.layers[name];		this.style = document.layers[name];	}}var pixel = 0;function show(){		var x = new getObj('antwort');		if (x.style.visibility = 'hidden') x.style.visibility = 'visible';		if (document.getElementById) {		//alert(1 + ": " + pixel);		x.style.clip = 'rect(0px ' + pixel + 'px 80px 0px)';	}	else if (document.all) {		//alert(2 + ": " + pixel);		x.style.clip = 'rect(0px ' + pixel + 'px 80px 0px)';	}	else if (document.layers) {		//alert(3 + ": " + pixel);		x.style.clip.width = pixel;	}		if (pixel < 500) {		pixel += 4;		window.setTimeout('show()', 1);	}}var farben = new Array();farben[0] = "#6b1810"; //"#cc0033";farben[1] = "#000000";var index = 0;function farbe(){	var x = new getObj('fz');		if (x.style.visibility = 'hidden') x.style.visibility = 'visible';		x.style.color = farben[index];		if (index < 1) index += 1; else index = 0;		window.setTimeout('farbe()', 500);}function deblur(pic){	if (document.all) pic.blur();}