<!--
		
	//   N E W S T I C K E R   -   S T A R T
	
	var dspeed=100; 
	var jj=-1;
	var timerID;

	function iens6exp(){
		if(jj==-1){
			exptxt='';
			iens6div.innerHTML=exptxt;
		}
		jj++;
		if(jj<=mesaj.length){
			exptxt+= mesaj.charAt(jj);
			iens6div.innerHTML=exptxt;
			timerID = setTimeout("iens6exp()",dspeed);
		} else {
			jj=-1;
			timerID = setTimeout("iens6exp()",1000);
		}
	}

	function ns4exp(){
		if(jj==-1){
			exptxt='';
			ns4div.document.write(exptxt);
			ns4div.document.close();
		}
		jj++;
		if(jj<=mesaj.length){
			exptxt+=mesaj.charAt(jj);
			document.ns4expb0.document.ns4expb1.document.write('<font face="Helvetica,Arial,sans-serif" size="1" color="#FFFFFF">' + exptxt + '</font>');
			document.ns4expb0.document.ns4expb1.document.close();
			timerID = setTimeout("ns4exp()",dspeed);
		} else {
			jj=-1;
			timerID = setTimeout("ns4exp()",1000);
		} 
	}
	
	function startNewsticker(){
		if(document.getElementById){
			iens6div=document.getElementById('expdiv');
			iens6exp();}
		else if(document.all){
			iens6div=expdiv;
			iens6exp();}
		else if(document.layers){
			ns4div=document.ns4expb0.document.ns4expb1;ns4exp();
		}
	}
	
	//   N E W S T I C K E R   -   E N D E
	
	
	//   R O L L O V E R - T E X T  
	function changetext(whichcontent){
		if (timerID != null) {
			clearTimeout(timerID);
		}
		if (document.getElementById)
			if (whichcontent == '') {
				document.getElementById("descriptions").innerHTML = "<div id=expdiv></div>";
			} else {
				document.getElementById("descriptions").innerHTML = whichcontent;
			}
		else 
		if (document.all) {
			if (whichcontent == '') {
				descriptions.innerHTML = "<div id=expdiv></div>";
			} else {
				descriptions.innerHTML = whichcontent;
			}
		}
		else if (document.layers){
			if (whichcontent == '') {
				document.d1.document.d2.document.write('<font face="Helvetica,Arial,sans-serif" size="1"></font>');
				document.d1.document.d2.document.close();
			} else {
				document.d1.document.d2.document.write('<font face="Helvetica,Arial,sans-serif" size="1">' + whichcontent + '</font>');
				document.d1.document.d2.document.close();
			}
		}
	}
	
	
	
	// Preload Images
	if (document.images) {
		src_IconOn = new Array(6);
		src_IconOff = new Array(6);
		
		src_IconOn[1] = new Image();		src_IconOn[1].src = "../images/btn_island_on.gif";
		src_IconOff[1] = new Image();		src_IconOff[1].src = "../images/btn_island.gif";

		src_IconOn[2] = new Image();		src_IconOn[2].src = "../images/btn_guestbook_on.gif";
		src_IconOff[2] = new Image();		src_IconOff[2].src = "../images/btn_guestbook.gif";
		
		src_IconOn[3] = new Image();		src_IconOn[3].src = "../images/btn_info_on.gif";
		src_IconOff[3] = new Image();		src_IconOff[3].src = "../images/btn_info.gif";
		
		src_IconOn[4] = new Image();		src_IconOn[4].src = "../images/btn_print_on.gif";
		src_IconOff[4] = new Image();		src_IconOff[4].src = "../images/btn_print.gif";
		
		src_IconOn[5] = new Image();		src_IconOn[5].src = "../images/btn_recommend_on.gif";
		src_IconOff[5] = new Image();		src_IconOff[5].src = "../images/btn_recommend.gif";
	}


	function imgIconOn(imgNumber) {
		if (document.images) {
			eval("document.img_Icon" + imgNumber + ".src = src_IconOn[" + imgNumber + "].src");
		}
	}

	function imgIconOff(imgNumber) {
		if (document.images) {
			eval("document.img_Icon" + imgNumber + ".src = src_IconOff[" + imgNumber + "].src");
		}
	}
	
	
	// aktives Formular-Input-Feld: Hintergrund-Farbe ändern
	function FormFocus(obj) {
		if (document.getElementByID || document.all) {
			obj.style.backgroundColor="#FFFFFF";
		} else {
			obj.style.background="#FFFFFF";
		}
	}
	
	// inaktives Formular-Input-Feld: Hintergrundfarbe ändern
	function FormBlur(obj) {
		if (document.getElementById || document.all) {
			obj.style.backgroundColor="#BFCBE2";
		} else {
			obj.style.background="#BFCBE2";
		}
	}
	

//-->