/* DHTML-Bibliothek */


function resizeBorders(){

  if(!document.getElementById)
    return;

  nav=window.document.getElementById("syxyl_rightbar");
  mn=window.document.getElementById("syxyl_head");
  cw=window.document.getElementById("syxyl_content");

  head=3;

  if(mn.offsetHeight) // Moz, IE, OP7 ...
    {
    h=head+mn.offsetHeight+cw.offsetHeight;
		if (h>HOEHE){
		    if(h>nav.offsetHeight){
		      nav.style.height=h+"px";
			}
		}else{
			nav.style.height=HOEHE+"px";
		}
    }

  if(mn.style && mn.style.pixelHeight) // OP6
    {
    h=head+mn.style.pixelHeight+cw.style.pixelHeight;
		if (h>HOEHE){
		    if(h>nav.style.pixelHeight){
		      nav.style.pixelHeight=h;
			 }
		}else{
			nav.style.pixelHeight=HOEHE;
		}
    }
  }

function MouseOverMenue(div_id,over_color){
	document.getElementById(div_id).style.backgroundColor = over_color;
}

function MouseOutMenue(div_id,over_color){
	document.getElementById(div_id).style.backgroundColor = over_color;
}
