<!--
  function hideSub( ) {
   if (!document.getElementsByTagName)
      return;
   var mnu = document.getElementById("menu");
   var toplis = mnu.getElementsByTagName("li");
   for (it = 0; it < toplis.length; it++) { /* each top li */
      var sublis = toplis[it].getElementsByTagName("li");
      for (is = 0; is < sublis.length; is++)  { /* each sub li */
         if (sublis[is].style)
            if (toplis[it].className == 'show')
               sublis[is].style.display = 'block';
            else
               sublis[is].style.display = 'none';
      }
   }
}
subitem=false;
function setSubitem(){subitem=true;}
function leer(){}
items=new Array();
lastNumber=0;
counter=0;
function closeMenu (mnu) {
   var toplis = mnu.getElementsByTagName("li");
   for (it = 0; it < toplis.length; it++) { /* each top li */
      var sublis = toplis[it].getElementsByTagName("li");
//      if (sublis == mylis) continue;
      for (is = 0; is < sublis.length; is++)  { /* each sub li */
         if (sublis[is].style.display == 'block')
            sublis[is].style.display = 'none';
      }
   }
}

function mShow(Me)
{
  if (subitem) {
  	subitem=false;
    return;
  }
  if (!Me.getElementsByTagName) return;
   var mylis = Me.getElementsByTagName("li");

   if (!mylis) return;

   var mnu = document.getElementById("menu");
   closeMenu(mnu);
   mnu = document.getElementById("submenu1");
   closeMenu(mnu);
	 mnu = document.getElementById("submenu2");
   closeMenu(mnu);

   //
   for (j = 0; j < mylis.length; j++) {
      if (mylis[j].style.display == 'block') {
         mylis[j].style.display = 'none';
      } else {
      		items[j]=mylis[j];
          lastNumber=j;
      	setTimeout('openItem()',150*j);
//         mylis[j].style.display = 'block';
      }
   }
}
function openItem(){
//         item.style.display = 'block';
	items[counter++].style.display='block';
  if(counter>lastNumber) counter=0;
}
function kontakt()
 {
   window.document.location.href="kontakt.htm";
   window.document.focus();
 }
function beratung()
 {
   window.document.location.href="beratung.htm";
   window.document.focus();
 }
function poesie()
 {
   window.document.location.href="poesie.htm";
   window.document.focus();
 }
function impressum()
 {
  impressum= window.open("content/impressum.htm","impressum","height=460,width=620,scrollbars=no,resizable=no");
  impressum.focus();
 }
function homepage()
 {
  homepageFenster = window.open("http://www.roxwell.strana.de","homepage","height=600,width=820,scrollbars=yes,resizable=yes");
  homepageFenster.focus();
 }
function popUp(fenster)
{
 if (!document.images)return true;

	var popup;
	popup=window.open("http://www.roxwell.strana.de","fotos","width=300,height=450");
	popup.document.bgColor="#ffffcc";
  	popup.focus();
  	return false;
}

 //-->
