
  function CL_SetCssMenueHover(menu,tag,cls){
      var navItems    = $(menu).getElementsByTagName(tag);
      var items       = $A(navItems);

      items.each(function(elm){
          var oClassname = elm.className;
          elm.onmouseover = function(){
              if( (navigator.appName=='Microsoft Internet Explorer') || (navigator.userAgent.indexOf('MSIE')!=-1 ) ) CL_ToggleMenueHoverSelects('off');
              this.className      = oClassname+cls;
              this.style.zIndex   = 10000;
          }
          elm.onmouseout  = function(){
              if( (navigator.appName=='Microsoft Internet Explorer') || (navigator.userAgent.indexOf('MSIE')!=-1 ) ) CL_ToggleMenueHoverSelects('on');
              this.className      = oClassname;
              this.style.zIndex   = 9999;
          }
      });
  }

  /* ie-bug 'windowed objects' (select list), toggle visibility by mouseover on 'menue_oben' */
  function CL_ToggleMenueHoverSelects(cmd){
      var arrSelect = ['o_id','e_id'];
      arrSelect.each(function(elm){
          var elm = $(elm);
          if( elm )
          elm.style.visibility = (cmd=='on')?'visible':'hidden';
      });
  }

function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
  	if(window.screen)if(isCenter)if(isCenter=="true"){
  		var myLeft = (screen.width-myWidth)/2;
  		var myTop = (screen.height-myHeight)/2;
  		features+=(features!='')?',':'';
  		features+=',left='+myLeft+',top='+myTop;
  	}
  	window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
  }

    function writeRubrikbildFlash(){
        document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" align="" width="590" height="200" id="rubrikJahreszeiten">'
                                        + '<param name="movie" value="jahreszeiten.swf" /> '
                                        + '<param name="loop" value="false" />'
                                        + '<param name="menu" value="false"/ >'
                                        + '<param name="quality" value="high" />'
                                        + '<param name="bgcolor" value="#ffffff" />'
                                        + '<param name="wmode" value="transparent">'
                                        + '<param name="allowScriptAccess" value="sameDomain" />'
                                        + '<embed src="jahreszeiten.swf" width="590" height="200" name="rubrikJahreszeiten" loop="false" menu="false" quality="high" bgcolor="#ffffff" wmode="transparent" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
                                        + '</object>');
    }
