   var norm = new Array;
   var high = new Array;

//Bilderquellen:

norm['jus']  = new Image;
norm['jus'].src  = "img/sponsoren/jung_und_schoen.gif";




//Highlight

high['jus']  = new Image;
high['jus'].src  = "img/sponsoren/jung_und_schoen_c.gif";


function on(which) {
	document.images[which].src = high[which].src;
}

function off(which) {
	document.images[which].src = norm[which].src;
}

//Popup

function popup (Adresse) {
  Fenster1 = window.open(Adresse, "Zweitfenster", "width=360,height=320,left=100,top=200");
  Fenster1.focus();
}
function popup_bilder (Adresse) {
  Fenster1 = window.open(Adresse, "BilderPopup", "width=699,height=522,left=100,top=200");
  Fenster1.focus();
}


  
  function picon(id) {
    var img = new Image;
    img.src = 'fileadmin/media/img/sponsoren/'+id+"_on.gif";
    document.getElementById(id).src = img.src;
  }
  function picoff(id) {
    var img = new Image;
    img.src = 'fileadmin/media/img/sponsoren/'+id+"_off.gif";
    document.getElementById(id).src = img.src;
    
  }
