
 <!--

NS6 = (document.getElementById&&!document.all)
IE = (document.all)
NS = (navigator.appName=="Netscape" && navigator.appVersion.charAt(0)=="4")

moving=setTimeout('null',1)
function moveOut() {
if ((NS6 && parseInt(ssm.left)<0)||(IE && ssm.style.pixelLeft<0)||(NS && document.ssm.left<0)) {
clearTimeout(moving);moving = setTimeout('moveOut()', slideSpeed)
if (NS6) {ssm.left = parseInt(ssm.left)+10+"px";} 
if (IE) {ssm.style.pixelLeft += 10;}             
if (NS) {document.ssm.left += 10;}}                                              
else {clearTimeout(moving);moving=setTimeout('null',1)}};                                  
                                                                                           
function moveBack() {                                                                      
clearTimeout(moving);moving = setTimeout('moveBack1()', waitTime)}                         
function moveBack1() {                                                                     
if ((NS6 && parseInt(ssm.left)>(-menuWidth))||(IE && ssm.style.pixelLeft>(-menuWidth))||(NS && document.ssm.left>(-menuWidth))) {
clearTimeout(moving);moving = setTimeout('moveBack1()', slideSpeed);                       
if (NS6) {ssm.left = parseInt(ssm.left)-10+"px";}                                     
if (IE) {ssm.style.pixelLeft -= 10;}             
if (NS) {document.ssm.left -= 10;}}             
else {clearTimeout(moving);moving=setTimeout('null',1)}};

lastY = 0;
function makeStatic() {
if (NS6) {winY = window.pageYOffset;}
if (IE) {winY = document.body.scrollTop;var NM=document.all('ssm').style}
if (NS) {winY = window.pageYOffset;var NM=document.ssm}
if (NS6||IE||NS) {
if (winY!=lastY&&winY>YOffset-staticYOffset) {
smooth = .2 * (winY - lastY - YOffset + staticYOffset);}
else if (YOffset-staticYOffset+lastY>YOffset-staticYOffset) {
smooth = .2 * (winY - lastY);}
else {smooth=0}
if(smooth > 0) smooth = Math.ceil(smooth);
else smooth = Math.floor(smooth);
if (NS6) ssm.top=parseInt(ssm.top)+smooth+"px"
if (IE) NM.pixelTop+=smooth;
if (NS) NM.top+=smooth;
lastY = lastY+smooth;
setTimeout('makeStatic()', 1)}}

function initSlide() {
if (NS6){
ssm=document.getElementById("ssm").style
ssm.visibility="visible";
ssm.left = -menuWidth;}
else if (IE) {
ssm.style.visibility = "visible"
ssm.style.pixelLeft = -menuWidth;}
else if (NS) {
document.ssm.left = -menuWidth;
document.ssm.visibility = "show"}
if (menuIsStatic=="no") makeStatic();}

function startMenu(menuHeader, barText) {
if (IE||NS6) {document.write('<DIV ID="ssm" style="visibility:hidden;Position : Absolute ;Left : 0px ;Top : '+YOffset+' ;Z-Index : 20;width:1px" onmouseover="moveOut()" onmouseout="moveBack()">')}
if (NS) {document.write('<LAYER visibility="hide" top="'+YOffset+'" name="ssm" bgcolor="'+menuBGColor+'" left="0" onmouseover="moveOut()" onmouseout="moveBack()">')}
if (NS6){document.write('<table border="0" cellpadding="0" cellspacing="0" width="'+(menuWidth+barWidth+2)+'" bgcolor="'+menuBGColor+'"><TR><TD>')}
tempBar=""
for (i=0;i<barText.length;i++) {
tempBar+=barText.substring(i, i+1)+"<BR>"}
document.write('<table border="0" cellpadding="0" cellspacing="1" width="'+(menuWidth+barWidth+2)+'" bgcolor="'+menuBGColor+'"><tr><td bgcolor="'+hdrBGColor+'" WIDTH="'+(menuWidth-1)+'" HEIGHT="'+hdrHeight+'" ALIGN="'+hdrAlign+'" VALIGN="'+hdrVAlign+'">&nbsp;<font face="'+hdrFontFamily+'" Size="'+hdrFontSize+'" COLOR="'+hdrFontColor+'"><b>'+menuHeader+'</b></font></td><td align="center" rowspan="100" width="'+barWidth+'" bgcolor="'+barBGColor+'" valign="'+barVAlign+'"><p align="center"><font face="'+barFontFamily+'" Size="'+barFontSize+'" COLOR="'+barFontColor+'"><B>'+tempBar+'</B></font></p></TD></tr>')}

function addItem(text, link, target) {
if (!target) {target=linkTarget}
document.write('<TR><TD BGCOLOR="'+linkBGColor+'" onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="'+(menuWidth-1)+'"><ILAYER><LAYER onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="100%" ALIGN="'+linkAlign+'"><DIV  ALIGN="'+linkAlign+'"><FONT face="'+linkFontFamily+'" Size="'+linkFontSize+'">&nbsp;<A HREF="'+link+'" CLASS="ssmItems" target="_main">'+text+'</DIV></LAYER></ILAYER></TD></TR>')}



function addExItem(text, link, target) {
if (!target) {target=linkTarget}
document.write('<TR><TD BGCOLOR="'+linkBGColor+'" onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="'+(menuWidth-1)+'"><ILAYER><LAYER onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="100%" ALIGN="'+linkAlign+'"><DIV  ALIGN="'+linkAlign+'"><FONT face="'+linkFontFamily+'" Size="'+linkFontSize+'">&nbsp;<A HREF="'+link+'" target="_main" CLASS="ssmItems">'+text+'</DIV></LAYER></ILAYER></TD></TR>')}


function addExPic(text, link, target) {
if (!target) {target=linkTarget}
document.write('<TR><TD cellpadding="2" BGCOLOR="'+linkBGColor+'" onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="'+(menuWidth-1)+'"><ILAYER><LAYER onmouseover="bgColor=\''+linkOverBGColor+'\'" onmouseout="bgColor=\''+linkBGColor+'\'" WIDTH="100%" ALIGN="'+linkAlign+'"><DIV  ALIGN="'+linkAlign+'">&nbsp;<A HREF="'+link+'" target="_main" CLASS="ssmItems"><img src="'+text+'" border="0"></A></DIV></LAYER></ILAYER></TD></TR>')}

function addHdr(text) {
document.write('<tr><td bgcolor="'+hdrBGColor+'" HEIGHT="'+hdrHeight+'" ALIGN="'+hdrAlign+'" VALIGN="'+hdrVAlign+'" WIDTH="'+(menuWidth-1)+'">&nbsp;<font face="'+hdrFontFamily+'" Size="'+hdrFontSize+'" COLOR="'+hdrFontColor+'"><b>'+text+'</b></font></td></tr>')}

function endMenu() {
document.write('<tr><td bgcolor="'+hdrBGColor+'"><font size="0" face="Arial">&nbsp;</font></td></TR></table>')
if (NS6){document.write('</TD></TR></TABLE>')}
if (IE||NS6) {document.write('</DIV>')}
if (NS) {document.write('</LAYER>')}
if (NS6||IE||NS) setTimeout('initSlide();', 100)}

<!--
        YOffset=120;                 // Position von oben
        staticYOffset=75;           // Position von oben beim scrollen
        slideSpeed=1;                // Geschwindigkeit des Menüs. Umso höher, desto langsamer.
        waitTime=1000;               // Wartezeit, wie lange das Menü drausen bleibt. 1000=1 Sek..
        menuBGColor="black";       // Farbe des Rahmens.
        menuIsStatic="no";           // Yes=Menü scrollt nicht mit. no=Menü scrollt mit.
        menuWidth=200;               // Menülänge
        hdrFontFamily="Arial";       // Schriftart von der 1. Zelle.
        hdrFontSize="2";             // Schriftgröße von der 1. Zelle.
        hdrFontColor="gray";      // Schriftfarbe von der 1. Zelle.
        hdrBGColor="black";        // Hintergrundfarbe von den größeren und der letzten Zellen.
        hdrAlign="center";           // Ausrichtung von der 1. Zelle.
        hdrVAlign="center";          // Ausrichtung von der ?. "Vieleicht kennt jemand anderes die erklärung".
        hdrHeight="6";               // höhe der größeren Zellen.
        linkFontFamily="Arial";      // Schriftart von den Links.
        linkFontSize="2";            // Schriftgröße von den Links
        linkBGColor="black";       // Hintergrundfarbe von den Zellen wo die Links stehen.
        linkOverBGColor="gray";   // Hintergrundfarbe von den Zellen wo die Links stehen beim Mousover.
        linkTarget="haupt";          // In welchem Frame der Link geöffnet werden soll.
        linkAlign="left";            // Ausrichtung der Links.
        barBGColor="black";        // Hintergrundfarbe von der Horizontalen Zelle.
        barFontFamily="Arial";       // Schriftart von der Horizontalen Zelle.
        barFontSize="1";             // Schriftgröße von der Horizontalen Zelle
        barFontColor="white";      // Schriftfarbe von der Horizontalen Zelle.
        barVAlign="center";          // Ausrichtung von der Horizontalen Zelle
        barWidth=15;                 // Breite von der Horizontalen Zelle
        startMenu("Menü", "Menü");    // Name der Horizontalen Zelle.
        addExItem("Home", "index.html");  //
	addExItem("Bilder", "fuehrung/Feldkuche.html");  //
        addExItem("Diashow", "diabilder/animation.html");  //
        addExItem("Anfahrt", "anfahrt/anfahrt.html");  //
        addExItem("Geschichte", "geschichte/geschichte.html");  //
        addExItem("Öffnugnszeiten", "Oeffnung/oeffnung.html");  //
        addExItem("Impressum", "Impressum/Impressum.html");  //
        addExItem("Email", "mailto:info@kutschen-sammlung.de");  //
        endMenu();

 //-->


