,<!--
	<!-- ........... Cookie-Objekt ........... -->
	function Cookie(document, name, hours, path, domain, secure) {
  		this.$document = document;
  		this.$name = name;
  		if (hours)
  			this.$expiration = new Date((new Date()).getTime() + hours*3600000);
  		else this.$expiration = null;
  		if (path) this.$path = path; else this.$path = null;
  		if (domain) this.$domain = domain; else this.$domain = null;
  		if (secure) this.$secure = true; else this.$secure = false;
	}
	
	<!-- ........... readCookie ........... -->
	function readCookie() {
  		var allCookies = document.cookie;
		var pos = allCookies.indexOf("version=");
		if (pos != -1) {
			var start = pos + 8;
			var end = allCookies.indexOf(";", start);
			if (end == -1) end = allCookies.length;
			value = allCookies.substring(start, end);
			value = unescape(value);
			return value;
		}
		return -1;
	}
	
	<!-- ........... writeCookie ........... -->
	function writeCookie(value) {
  		document.cookie = "version=" + escape(value);
	}
	
	<!-- ........... writeCookie ........... -->
	function _Cookie_store() {
  		var cookieval = "";
  		for (var prop in this) {
  			if ((prop.charAt(0) == '$') || ((typeof this [prop]) == 'function'))
  				continue;
  			if (cookieval != "") cookieval += '&';
  			cookieval += prop + ':' + escape(this[prop]);
  		}
  		var cookie = this.$name + '=' + cookieval;
  		if (this.$expiration)
  			cookie += '; expires=' + this.$expiration.toGMTString();
  		if (this.$path) cookie += '; path=' + this.$path;
  		if (this.$domain) cookie += '; domain=' + this.$domain;
  		if (this.$secure) cookie += '; secure';	
	}

	<!-- ........... Preload der Bilder in ein Objekt ........... -->
	function preloadImg(img) {	
		var bild=new Image();
		bild.src=img;
		return bild;
	}
				
	<!-- ........... mouseOver ........... -->
	function rollOver(bild) {
  		if (document.images) {
    		document[bild].src = eval(bild + '_over.src');	
    	}
	}
  	
 	function rollOff(bild) {
  		if (document.images) {
    		document[bild].src = eval(bild + '.src');	
    	}
  	}

    function reDo() {
    	if (innerWidth != origWidth || innerHeight != origHeight) 
        	location.reload();
    }
	
	<!-- ........... Initialisierung und PreLoade der Bilder ........... -->
	function initImg() {	
		if (document.images) {
			dog = preloadImg('../_images/side_dog_0.gif');
			dog_over = preloadImg('../_images/side_dog_1.gif');
			wort = preloadImg('../_images/side_wort_0.gif');
			wort_over = preloadImg('../_images/side_wort_1.gif');
			brain = preloadImg('../_images/side_brain_0.gif');
			brain_over = preloadImg('../_images/side_brain_1.gif');
			job = preloadImg('../_images/side_job_0.gif');
			job_over = preloadImg('../_images/side_job_1.gif');
		}
	}
	

	<!-- ........... NN-Check ........... -->
	<!-- ... Script zum BrowserCheck von Peter-Paul Koch http://www.xs4all.nl/~ppk/ ... -->
	<!-- ... und nun von mir 'gesundgeschrumpft' (Kai: 020329)
	function checkNN() {	
		var OS,browser,version,total,thestring;
		
		var detect = navigator.userAgent.toLowerCase();
		var place = detect.indexOf('compatible') + 1;
		
		if (!place) {
			browser = "Netscape Navigator"
			version = detect.charAt(8);
		}
		
		if (browser == "Netscape Navigator" && version == "4") {
			document.write("<center><table bgcolor=yellow width=75%><tr><td>");
			document.write("<h1><center>Netscape 4-User!</center></h1>");
			document.write("<p>&nbsp;</p>");
			document.write("<p class='fliesstext'>Diese Site setzt nach besten Wissen und Gewissen Webstandards ein, die seit 1996 bzw. 1998 vom W3C verabschiedet worden sind. Netscape 4.x besitzt von den gebr&auml;uchlichen Browsern die mit <b>weiten Abstand</b> schlechteste Implementation dieser Standards.</p>");
			document.write("<p class='fliesstext'>Sie werden dieses auf meiner Site u.a. an der &Uuml;berlagerung von Text durch Bildern feststellen.</p>");
			document.write("<p class='fliesstext'>Tun Sie sich und der Webgemeinde einen Gefallen und surfen Sie mit einem aktuelleren Browser.</p>");
			document.write("<p class='fliesstext'>Wenn Sie mehr &uuml;ber meine Bewegr&uuml;nde wissen wollen, lesen Sie bitte auf meiner <a href='../brain/upgrade_your_browser.html'>Upgrade!-Seite</a> weiter</p>");
			document.write("</td></tr></table></center>");
		}
	}
		
	
	<!-- ........... reSize-Fix ........... -->
 	var NS4 = document.layers;
    if (NS4) {
    	origWidth = innerWidth;
   		origHeight = innerHeight;
    }
    
    if (NS4) onresize = reDo;
                          
//-->
