var MaxHighlight=5;
var normal = 0;
var highlight = 1;
// var description = 2;
var i

var img_normal = new Array(MaxHighlight);
var img_highlight = new Array(MaxHighlight);
// var img_description = new Array(MaxHighlight);
var src = new Array(MaxHighlight);

src[0] = new Array(3)
src[0][normal] = "fileadmin/templates/images/nav_glob_initernat.gif";
src[0][highlight] = "fileadmin/templates/images/nav_glob_initernat2.gif";
// src[0][description] = "fileadmin/templates/images/rollover/desc_home.gif";

src[1] = new Array(3)
src[1][normal] = "fileadmin/templates/images/nav_glob_maka_home.gif";
src[1][highlight] = "fileadmin/templates/images/nav_glob_maka_home2.gif";
// src[1][description] = "fileadmin/templates/images/rollover/desc_email.gif"; 

src[2] = new Array(3)
src[2][normal] = "fileadmin/templates/images/nav_glob_mail.gif";
src[2][highlight] = "fileadmin/templates/images/nav_glob_mail2.gif";
// src[2][description] = "fileadmin/templates/images/rollover/desc_find.gif";

src[3] = new Array(3)
src[3][normal] = "fileadmin/templates/images/nav_glob_sitemap.gif";
src[3][highlight] = "fileadmin/templates/images/nav_glob_sitemap2.gif";
// src[3][description] = "fileadmin/templates/images/rollover/desc_sitemap.gif";

src[4] = new Array(3)
src[4][normal] = "fileadmin/templates/images/nav_glob_print.gif";
src[4][highlight] = "fileadmin/templates/images/nav_glob_print2.gif";
// src[4][description] = "fileadmin/templates/images/rollover/desc_help.gif";

for (i=0;i<MaxHighlight;i++){
    img_normal[i] = new Image();
    img_normal[i].src = src[i][normal];
    img_highlight[i] = new Image();
    img_highlight[i].src = src[i][highlight];
//    img_description[i] = new Image();
//    img_description[i].src = src[i][description];
}

// var description_blank = new Image();
// description_blank.src = "fileadmin/templates/images/rollover/r1_status_rest.gif";


function Bildwechsel(index,bildname,modus) {

 if (modus == normal){
     window.document.images[bildname].src = img_normal[index].src;
//     window.document.images['Beschreibung'].src = description_blank.src 
 }
 else{
     window.document.images[bildname].src = img_highlight[index].src;
//     window.document.images['Beschreibung'].src = img_description[index].src 
 }
 
}





function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//player
function winOpen(url, breite, hoehe) {
	  // alert (url);
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);

		   window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);

   } 

